* {
    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.6;
    color: #2d3748;
    background: #ffffff;
}

.ad-notice {
    background: #edf2f7;
    color: #4a5568;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #cbd5e0;
}

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d3748;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    width: 55%;
    padding: 120px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7fafc;
    position: relative;
    z-index: 2;
}

.hero-title-large {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: #718096;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-visual-overlap {
    width: 45%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-primary {
    display: inline-block;
    background: #2d3748;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
    width: fit-content;
}

.cta-primary:hover {
    background: #1a202c;
    transform: translateY(-2px);
}

.intro-asymmetric {
    display: flex;
    min-height: 500px;
}

.intro-block-left {
    width: 60%;
    background: #ffffff;
    padding: 100px 80px;
    display: flex;
    align-items: center;
}

.intro-text-narrow {
    max-width: 560px;
}

.intro-text-narrow h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a202c;
}

.intro-text-narrow p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-visual-right {
    width: 40%;
    background: #e2e8f0;
}

.intro-visual-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-offset {
    padding: 120px 60px;
    background: #edf2f7;
}

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

.section-header-centered h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.section-header-centered p {
    font-size: 18px;
    color: #718096;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card-wide {
    flex: 1 1 calc(50% - 24px);
}

.service-card-tall .service-image {
    height: 350px;
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a202c;
}

.service-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.service-select {
    background: #2d3748;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
}

.service-select:hover {
    background: #1a202c;
    transform: translateY(-2px);
}

.testimonial-overlap {
    padding: 0;
    background: #ffffff;
}

.testimonial-container {
    display: flex;
    min-height: 450px;
}

.testimonial-quote {
    width: 50%;
    padding: 80px 100px;
    background: #2d3748;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.testimonial-quote p {
    font-size: 26px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-quote cite {
    font-size: 16px;
    font-style: normal;
    color: #cbd5e0;
}

.testimonial-visual {
    width: 50%;
    background-size: cover;
    background-position: center;
}

.form-section-offset {
    padding: 100px 60px;
    background: #f7fafc;
}

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

.form-wrapper h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
    text-align: center;
}

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

.contact-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background: #2d3748;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #1a202c;
    transform: translateY(-2px);
}

.cta-strip {
    background: #edf2f7;
    padding: 80px 60px;
    text-align: center;
}

.cta-content h3 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a202c;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #2d3748;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2d3748;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background: #2d3748;
    color: #ffffff;
}

.footer-asymmetric {
    background: #1a202c;
    color: #cbd5e0;
    padding: 80px 60px 40px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

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

.footer-col p {
    color: #a0aec0;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col-brand p {
    margin-top: 12px;
    line-height: 1.6;
}

.footer-disclaimer {
    background: #2d3748;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p {
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
}

.btn-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-reject {
    background: #718096;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-hero-minimal {
    padding: 120px 60px 80px;
    text-align: center;
    background: #f7fafc;
}

.page-hero-minimal h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #1a202c;
}

.page-hero-minimal p {
    font-size: 20px;
    color: #718096;
}

.about-story {
    padding: 80px 60px;
    background: #ffffff;
}

.story-block {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a202c;
}

.story-text p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-visual {
    flex: 1;
    height: 500px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.philosophy-offset {
    padding: 100px 60px;
    background: #2d3748;
    color: #ffffff;
}

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

.philosophy-content h2 {
    font-size: 42px;
    margin-bottom: 32px;
}

.philosophy-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #e2e8f0;
}

.team-asymmetric {
    padding: 100px 60px;
    background: #edf2f7;
}

.section-title-centered {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a202c;
}

.team-grid-irregular {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1 1 280px;
    text-align: center;
}

.member-image {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a202c;
}

.team-member p {
    font-size: 16px;
    color: #718096;
}

.values-section {
    padding: 80px 60px;
    background: #ffffff;
}

.values-container {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a202c;
}

.value-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
}

.services-detailed {
    padding: 60px;
    background: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 80px;
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-visual {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.service-detail-content {
    flex: 1;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-detail-intro {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
}

.service-detail-info h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2d3748;
}

.service-detail-info ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-detail-info li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.5;
}

.service-detail-info p {
    font-size: 16px;
    color: #718096;
    margin-bottom: 12px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin: 28px 0 20px;
}

.form-section-centered {
    padding: 100px 60px;
    background: #edf2f7;
}

.contact-layout {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: #1a202c;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
}

.contact-detail p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-visual-block {
    flex: 1;
}

.contact-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    margin-bottom: 24px;
}

.contact-note {
    background: #f7fafc;
    padding: 28px;
    border-radius: 8px;
}

.contact-note p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.location-section {
    padding: 80px 60px;
    background: #edf2f7;
    text-align: center;
}

.location-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a202c;
}

.location-description {
    max-width: 700px;
    margin: 0 auto;
}

.location-description p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    display: flex;
    min-height: 70vh;
}

.thanks-content {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-message {
    font-size: 24px;
    color: #48bb78;
    margin-bottom: 40px;
    font-weight: 600;
}

.thanks-details {
    margin-bottom: 48px;
}

.thanks-details p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.6;
}

#serviceConfirmation {
    font-weight: 600;
    color: #2d3748;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #2d3748;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #1a202c;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2d3748;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2d3748;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #2d3748;
    color: #ffffff;
}

.thanks-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a202c;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2d3748;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #4a5568;
}

.legal-page p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-page li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page a {
    color: #2d3748;
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-page a:hover {
    color: #1a202c;
}

@media (max-width: 968px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-visual-overlap {
        width: 100%;
    }

    .hero-visual-overlap {
        min-height: 400px;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

    .intro-block-left,
    .intro-visual-right {
        width: 100%;
    }

    .intro-visual-right {
        min-height: 400px;
    }

    .testimonial-container {
        flex-direction: column;
    }

    .testimonial-quote,
    .testimonial-visual {
        width: 100%;
    }

    .testimonial-visual {
        min-height: 300px;
    }

    .story-block {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
        gap: 60px;
    }

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

    .thanks-section {
        flex-direction: column;
    }

    .thanks-visual {
        min-height: 300px;
    }

    .hero-title-large {
        font-size: 48px;
    }

    .nav-floating {
        padding: 16px 24px;
    }

    .nav-links {
        gap: 20px;
    }

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