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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fefefe;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6b6b6b;
}

.ad-label {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-visual {
    margin-top: 80px;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #e8e3dc;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.page-hero {
    margin-top: 80px;
    height: 50vh;
    position: relative;
}

.page-hero .hero-image-wrapper {
    height: 100%;
}

.page-hero .hero-overlay h1 {
    font-size: 3rem;
}

.narrative-intro {
    padding: 8rem 2rem;
    background: #f9f8f6;
}

.content-narrow {
    max-width: 740px;
    margin: 0 auto;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.8rem;
}

.narrative-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.narrative-intro em {
    font-style: italic;
    font-weight: 500;
}

.image-break {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-color: #d9d5ce;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-amplification {
    padding: 7rem 2rem;
    background: #ffffff;
}

.split-content {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.split-content-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 5rem;
    align-items: center;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1.8rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #3a3a3a;
}

.text-block ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.text-block li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.image-block {
    flex: 1;
    background-color: #e8e3dc;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-reveal {
    padding: 7rem 2rem;
    background: #f0ede7;
}

.insight-reveal h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: #1a1a1a;
}

.insight-reveal p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background: #2c2c2c;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1rem;
    color: #b8b8b8;
    font-weight: 500;
}

.services-reveal {
    padding: 8rem 2rem;
    background: #ffffff;
}

.services-reveal h2 {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    max-width: 550px;
    background: #f9f8f6;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8e3dc;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 1.5rem 1rem;
    color: #4a4a4a;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 1.5rem;
    color: #1a1a1a;
}

.cta-button {
    display: inline-block;
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.9rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #3a3a3a;
}

.trust-building {
    padding: 7rem 2rem;
    background: #f0ede7;
}

.trust-building h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-building p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.form-section {
    padding: 7rem 2rem;
    background: #ffffff;
}

.form-section h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-section > div > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #2c2c2c;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
    background: #ffffff;
}

.submit-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #3a3a3a;
}

.disclaimer-section {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    font-style: italic;
}

.footer {
    background: #1a1a1a;
    color: #b8b8b8;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.97);
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background: #f0f0f0;
}

.cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-buttons a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.cookie-buttons a:hover {
    opacity: 0.7;
}

.about-story {
    padding: 6rem 2rem;
    background: #ffffff;
}

.about-story h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
}

.about-story p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.about-image-break {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    background-color: #d9d5ce;
}

.about-image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-philosophy {
    padding: 7rem 2rem;
    background: #f9f8f6;
}

.about-team {
    padding: 6rem 2rem;
    background: #ffffff;
}

.about-team h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-team p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.about-location {
    padding: 6rem 2rem;
    background: #f0ede7;
}

.about-location h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-location p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #3a3a3a;
}

.services-intro {
    padding: 5rem 2rem;
    background: #ffffff;
}

.services-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.services-detailed {
    padding: 4rem 2rem;
    background: #f9f8f6;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8e3dc;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: #1a1a1a;
}

.services-cta {
    padding: 6rem 2rem;
    background: #2c2c2c;
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ffffff;
}

.services-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
}

.cta-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-link:hover {
    background: #f0f0f0;
}

.contact-content {
    padding: 6rem 2rem;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-image {
    flex: 1;
    background-color: #e8e3dc;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-approach {
    padding: 6rem 2rem;
    background: #f0ede7;
}

.contact-approach h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-approach p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.thanks-section {
    padding: 8rem 2rem;
    background: #f9f8f6;
    min-height: 70vh;
}

.thanks-section .content-narrow {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.thanks-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.thanks-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.thanks-button:hover {
    background: #3a3a3a;
}

.thanks-image {
    flex: 1;
    background-color: #e8e3dc;
}

.thanks-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.legal-content {
    padding: 6rem 2rem;
    background: #ffffff;
    min-height: 60vh;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.6rem;
    color: #3a3a3a;
}

.legal-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.legal-content a:hover {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .split-content,
    .split-content-reverse,
    .contact-grid,
    .service-detail {
        flex-direction: column;
        gap: 3rem;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

    .hero-overlay h1 {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1.2rem;
    }

    .content-wide {
        padding: 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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