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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #8b7355;
    color: white;
}

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

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

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

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8b7355;
}

.nav-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 3px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c3e50;
}

.hero-story {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8b7355;
}

.hero-story img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    color: #f8f9fa;
    max-width: 700px;
    margin: 0 auto;
}

.narrative-intro {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.intro-lead {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #2c3e50;
    line-height: 1.6;
}

.narrative-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.image-break {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: #34495e;
}

.image-break img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    margin: 2rem;
    max-width: 600px;
}

.image-caption p {
    font-size: 1.2rem;
    color: #2c3e50;
    font-style: italic;
    margin: 0;
}

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

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

.problem-amplification h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-left: 4px solid #8b7355;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #8b7355;
}

.problem-card p {
    color: #555;
    line-height: 1.8;
}

.insight-reveal {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: white;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.insight-reveal p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.visual-showcase {
    padding: 5rem 2rem;
    background: #ffffff;
}

.showcase-item {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    align-items: center;
    flex-wrap: wrap;
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-item img {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.showcase-text {
    flex: 1;
    min-width: 300px;
}

.showcase-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.showcase-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.testimonials-inline {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.testimonial {
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    background: white;
    border-left: 5px solid #8b7355;
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.8;
}

.testimonial cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

.services-preview {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-feature {
    flex: 1;
    min-width: 300px;
    max-width: 520px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-feature h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    color: #2c3e50;
}

.service-feature p {
    padding: 0 1.5rem 1rem 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b7355;
    padding: 1rem 1.5rem;
}

.cta-service {
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 1rem;
    background: #8b7355;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #6d5a42;
    transform: translateY(-2px);
}

.trust-building {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.trust-building h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #8b7355;
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.process-step p {
    color: #555;
    line-height: 1.7;
}

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

.form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-section > .content-narrow > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    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: #8b7355;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #8b7355;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background: #ecf0f1;
}

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 2rem 2rem 2rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    color: #8b7355;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: block;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .showcase-item,
    .showcase-item.reverse {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}