* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-minimal {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid #e0e0e0;
}

.nav-logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #666;
}

.hero-minimal {
    margin-top: 120px;
    padding: 80px 40px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 22px;
    color: #666;
    font-weight: 300;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
    background-color: #e8e8e8;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-space {
    padding: 120px 40px;
    background-color: #ffffff;
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.intro-narrow p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.image-break {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.image-break img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-minimal {
    padding: 120px 40px;
    background-color: #fafafa;
}

.services-header {
    max-width: 700px;
    margin: 0 auto 80px auto;
    text-align: center;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    background-color: #ffffff;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e8e8e8;
    margin-bottom: 30px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-section {
    padding: 120px 40px;
    background-color: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -1px;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 500;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #333;
}

.why-section {
    padding: 120px 40px;
    background-color: #f5f5f5;
}

.why-content {
    max-width: 700px;
    margin: 0 auto;
}

.why-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.why-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 40px 30px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 30px;
    background-color: #2a2a2a;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #bbb;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #d0d0d0;
    padding: 25px 40px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.btn-cookie-accept {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #333;
}

.btn-cookie-reject {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

.btn-cookie-reject:hover {
    background-color: #d0d0d0;
}

.page-hero {
    margin-top: 120px;
    padding: 100px 40px 60px 40px;
    text-align: center;
    background-color: #ffffff;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: -2px;
}

.about-content {
    padding: 80px 40px;
    background-color: #fafafa;
}

.about-text {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.about-image {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
    background-color: #e8e8e8;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.approach-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.approach-section h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.approach-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.approach-item {
    flex: 1 1 400px;
}

.approach-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.philosophy-section {
    padding: 100px 40px;
    background-color: #f5f5f5;
}

.philosophy-content {
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.services-detailed {
    padding: 80px 40px;
    background-color: #fafafa;
}

.service-detail {
    max-width: 1100px;
    margin: 0 auto 100px auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
    background-color: #e8e8e8;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.service-price-large {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 25px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.cta-section {
    padding: 100px 40px;
    text-align: center;
    background-color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 500;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #333;
}

.contact-content {
    padding: 80px 40px;
    background-color: #fafafa;
}

.contact-info {
    max-width: 900px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-block {
    flex: 1 1 250px;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    max-width: 700px;
    margin: 60px auto 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 4px;
}

.contact-note h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.thanks-section {
    margin-top: 120px;
    padding: 120px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.thanks-service {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.thanks-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.thanks-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

.btn-thanks {
    display: inline-block;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 500;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-thanks:hover {
    background-color: #333;
}

.legal-content {
    padding: 80px 40px;
    background-color: #fafafa;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 4px;
}

.legal-text h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 22px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.legal-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-text li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.legal-text a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: #888;
}

@media (max-width: 768px) {
    .ad-notice {
        font-size: 11px;
        padding: 6px 15px;
    }

    .nav-minimal {
        padding: 15px 20px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        display: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-minimal {
        margin-top: 100px;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-space,
    .services-minimal,
    .form-section,
    .why-section,
    .approach-section,
    .philosophy-section,
    .services-detailed,
    .cta-section,
    .contact-content {
        padding: 60px 20px;
    }

    .intro-narrow h2,
    .why-content h2,
    .philosophy-content h2 {
        font-size: 32px;
    }

    .intro-narrow p,
    .why-content p,
    .philosophy-content p {
        font-size: 17px;
    }

    .services-header h2 {
        font-size: 36px;
    }

    .service-detail {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-detail-reverse {
        flex-direction: column;
    }

    .footer {
        padding: 60px 20px 20px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .page-hero {
        margin-top: 100px;
        padding: 80px 20px 40px 20px;
    }

    .page-hero h1 {
        font-size: 40px;
    }

    .about-content {
        padding: 60px 20px;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .thanks-section {
        padding: 80px 20px;
    }

    .thanks-content h1 {
        font-size: 36px;
    }

    .legal-text {
        padding: 40px 20px;
    }

    .approach-grid {
        gap: 30px;
    }

    .approach-item {
        flex: 1 1 100%;
    }
}