* {
    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: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a:hover {
    color: #8b5a3c;
}

.nav-mobile {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

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

.hero-content-offset {
    flex: 1;
    padding: 80px 5% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f5f1ed 0%, #e8ddd3 100%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 600px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #8b5a3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #6d4730;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 90, 60, 0.3);
}

.hero-image-diagonal {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

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

.intro-offset {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
    background: #ffffff;
}

.intro-text-wide {
    flex: 1.2;
}

.intro-text-wide h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-text-wide p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-image-float {
    flex: 0.8;
    position: relative;
    top: -40px;
}

.intro-image-float img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.story-section {
    padding: 120px 5%;
    background: #faf8f5;
}

.story-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-block-left {
    flex: 1;
    padding-right: 40px;
}

.story-block-left h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-block-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.story-image-overlap {
    flex: 0.9;
    position: relative;
    left: 30px;
}

.story-image-overlap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.problem-amplification {
    padding: 100px 5%;
    background: #2c3e50;
    color: #ffffff;
}

.problem-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.problem-grid-asymmetric {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-card {
    background: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #8b5a3c;
}

.problem-card.large {
    flex: 1.4;
    min-width: 350px;
}

.problem-card.medium {
    flex: 1;
    min-width: 300px;
}

.problem-card.small {
    flex: 0.8;
    min-width: 280px;
}

.problem-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.insight-diagonal {
    padding: 120px 5%;
    background: linear-gradient(125deg, #ffffff 0%, #f8f5f1 100%);
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.insight-text-zone {
    margin-bottom: 60px;
    max-width: 700px;
}

.insight-text-zone h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.insight-text-zone p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 380px;
    max-width: 450px;
    transition: all 0.3s;
}

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

.service-card.offset-top {
    margin-top: -20px;
}

.service-card.offset-bottom {
    margin-top: 20px;
}

.service-card.offset-middle {
    margin-top: 10px;
}

.service-image {
    height: 280px;
    overflow: hidden;
    background: #e8ddd3;
}

.service-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b5a3c;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 14px;
    background: #8b5a3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: #6d4730;
    transform: translateY(-2px);
}

.trust-building {
    padding: 100px 5%;
    background: #faf8f5;
}

.trust-content-offset {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content-offset h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.testimonials-stagger {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    max-width: 700px;
}

.testimonial-card.left {
    align-self: flex-start;
    margin-left: 0;
}

.testimonial-card.right {
    align-self: flex-end;
    margin-right: 0;
}

.testimonial-card.center {
    align-self: center;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: #8b5a3c;
    font-weight: 600;
}

.benefits-reveal {
    padding: 100px 5%;
    background: #ffffff;
}

.benefits-asymmetric {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.benefit-large,
.benefit-medium,
.benefit-small {
    background: #f8f5f1;
    padding: 40px;
    border-radius: 8px;
    border-top: 5px solid #8b5a3c;
}

.benefit-large {
    flex: 1.5;
    min-width: 400px;
}

.benefit-medium {
    flex: 1;
    min-width: 320px;
}

.benefit-small {
    flex: 0.8;
    min-width: 280px;
}

.benefit-large h3,
.benefit-medium h3,
.benefit-small h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.benefit-large p,
.benefit-medium p,
.benefit-small p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.benefit-large a,
.benefit-medium a,
.benefit-small a {
    color: #8b5a3c;
    text-decoration: none;
    font-weight: 600;
}

.benefit-large a:hover,
.benefit-medium a:hover,
.benefit-small a:hover {
    text-decoration: underline;
}

.cta-floating {
    padding: 80px 5%;
    background: linear-gradient(135deg, #8b5a3c 0%, #6d4730 100%);
    position: relative;
    overflow: hidden;
}

.cta-content-diagonal {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content-diagonal h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content-diagonal p {
    font-size: 20px;
    margin-bottom: 0;
}

.form-section {
    padding: 100px 5%;
    background: #faf8f5;
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5a3c;
}

.submit-btn {
    padding: 16px;
    background: #8b5a3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px 5%;
    background: #f0ede8;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6c7d;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 5% 30px;
}

.footer-content-asymmetric {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section.large {
    flex: 1.5;
}

.footer-section.medium {
    flex: 1;
}

.footer-section.small {
    flex: 0.8;
}

.footer-section.references {
    flex: 2;
    min-width: 400px;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.references-list {
    list-style: none;
    counter-reset: ref-counter;
}

.references-list li {
    counter-increment: ref-counter;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 13px;
    line-height: 1.6;
}

.references-list li::before {
    content: "[" counter(ref-counter) "]";
    position: absolute;
    left: 0;
    color: #8b5a3c;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #8b5a3c;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #6d4730;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        clip-path: none;
        padding: 60px 5%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 400px;
        clip-path: none;
    }

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

    .intro-image-float {
        top: 0;
    }

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

    .story-image-overlap {
        left: 0;
    }

    .problem-grid-asymmetric {
        flex-direction: column;
    }

    .problem-card {
        min-width: 100%;
    }

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

    .service-card {
        min-width: 100%;
        max-width: 100%;
        margin-top: 0 !important;
    }

    .testimonials-stagger {
        gap: 25px;
    }

    .testimonial-card {
        align-self: stretch !important;
        margin: 0 !important;
    }

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

    .benefit-large,
    .benefit-medium,
    .benefit-small {
        min-width: 100%;
    }

    .form-container-offset {
        padding: 40px 25px;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-content-asymmetric {
        flex-direction: column;
    }

    .footer-section {
        min-width: 100%;
    }

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

    .cookie-buttons {
        flex-direction: column;
    }
}