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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #faf9f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-minimal {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-logo {
    font-size: 28px;
    font-weight: 700;
    color: #8b6f47;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    background-color: #f0f0f0;
    padding: 6px 12px;
    border-radius: 4px;
}

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

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

.nav-inline a:hover {
    color: #8b6f47;
}

.hero-card-overlay {
    position: relative;
    margin-bottom: 80px;
}

.hero-background {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.85), rgba(60, 48, 35, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.hero-card-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
}

.intro-cards {
    padding: 80px 0;
}

.card-grid-intro {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3c3023;
}

.intro-card p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.7;
}

.intro-card.accent {
    background: linear-gradient(135deg, #8b6f47, #a58965);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stat-large {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 10px;
}

.story-section {
    padding: 80px 0;
    background-color: #f5f2ef;
}

.story-card-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.story-card img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content {
    padding: 40px;
}

.story-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #3c3023;
}

.story-content p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 15px;
    line-height: 1.8;
}

.problem-cards {
    padding: 80px 0;
}

.section-title-centered {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #3c3023;
}

.card-grid-three {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.problem-card p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
}

.insight-section {
    padding: 80px 0;
    background-color: #f5f2ef;
}

.insight-card-large {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.insight-content {
    flex: 1;
    min-width: 350px;
    padding: 50px;
}

.insight-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #3c3023;
}

.insight-content p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.citation {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.insight-highlight {
    background-color: #fef9f3;
    border-left: 4px solid #8b6f47;
    padding: 20px;
    margin-top: 30px;
}

.insight-image {
    flex: 1;
    min-width: 350px;
}

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

.trust-section {
    padding: 80px 0;
}

.card-grid-testimonials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-left: 4px solid #8b6f47;
}

.testimonial-text {
    font-size: 17px;
    color: #3c3023;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.benefits-reveal {
    padding: 80px 0;
    background-color: #f5f2ef;
}

.benefits-card-wrapper h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #3c3023;
}

.card-grid-benefits {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.benefit-number {
    font-size: 36px;
    font-weight: 900;
    color: #8b6f47;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3c3023;
}

.benefit-card p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
}

.services-pricing {
    padding: 80px 0;
}

.card-grid-services {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3c3023;
}

.service-content p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

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

.btn-select-service:hover {
    background-color: #6f5736;
}

.form-section {
    padding: 80px 0;
    background-color: #f5f2ef;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #3c3023;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #3c3023;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fef9f3;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
}

.disclaimer-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3c3023;
}

.disclaimer-card p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.8;
}

.footer {
    background-color: #3c3023;
    color: #e5e5e5;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4a574;
}

.footer-references {
    border-top: 1px solid #5a4a3a;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #d4a574;
}

.references-list {
    font-size: 13px;
    line-height: 1.8;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 8px;
}

.references-list a {
    color: #c9bdb1;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #5a4a3a;
    padding-top: 20px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-accept:hover {
    background-color: #6f5736;
}

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

.btn-reject:hover {
    background-color: #3a3a3a;
}

.thanks-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #8b6f47, #a58965);
    color: #ffffff;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.thanks-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content {
    padding: 80px 0;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.thanks-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #3c3023;
}

.thanks-card p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-card ul {
    margin: 20px 0;
    padding-left: 25px;
}

.thanks-card li {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 10px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #6f5736;
}

.about-hero {
    padding: 100px 0 60px;
    background-color: #f5f2ef;
}

.about-hero h1 {
    font-size: 48px;
    color: #3c3023;
    text-align: center;
    margin-bottom: 20px;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 19px;
    color: #5a5a5a;
    line-height: 1.8;
}

.about-content {
    padding: 80px 0;
}

.about-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.about-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3c3023;
}

.about-card p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.services-hero {
    padding: 100px 0 60px;
    background-color: #f5f2ef;
}

.services-hero h1 {
    font-size: 48px;
    color: #3c3023;
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 19px;
    color: #5a5a5a;
    line-height: 1.8;
}

.services-content {
    padding: 80px 0;
}

.contact-hero {
    padding: 100px 0 60px;
    background-color: #f5f2ef;
}

.contact-hero h1 {
    font-size: 48px;
    color: #3c3023;
    text-align: center;
    margin-bottom: 20px;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 19px;
    color: #5a5a5a;
    line-height: 1.8;
}

.contact-content {
    padding: 80px 0;
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #3c3023;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #8b6f47;
    font-weight: 600;
}

.contact-info p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.8;
}

.legal-page {
    padding: 100px 0 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 42px;
    color: #3c3023;
    margin-bottom: 15px;
}

.legal-header p {
    font-size: 16px;
    color: #7a7a7a;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #3c3023;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #5a5a5a;
}

.legal-content p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 25px;
}

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

@media (max-width: 768px) {
    .hero-card-content h1 {
        font-size: 32px;
    }

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

    .section-title-centered {
        font-size: 28px;
    }

    .card-grid-intro,
    .card-grid-three,
    .card-grid-testimonials,
    .card-grid-benefits,
    .card-grid-services {
        flex-direction: column;
    }

    .insight-card-large {
        flex-direction: column;
    }

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

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}