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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #faf8f6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content a {
    color: #8b6f47;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background: #e8e8e8;
    color: #2c2c2c;
}

.cookie-btn.reject:hover {
    background: #d0d0d0;
}

.header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

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

.nav {
    display: flex;
    gap: 24px;
}

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

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

.hero-card {
    margin: 0;
}

.hero-card-image {
    height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-card-overlay {
    background: rgba(255, 255, 255, 0.92);
    padding: 60px 40px;
    max-width: 700px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-card-overlay h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 700;
}

.hero-card-overlay p {
    font-size: 18px;
    color: #555;
}

.intro-cards {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.intro-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.intro-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.intro-card p {
    margin-bottom: 16px;
    color: #555;
    font-size: 16px;
}

.intro-card.highlight {
    background: #8b6f47;
    color: #fff;
}

.intro-card.highlight h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.intro-card.highlight ul {
    list-style: none;
}

.intro-card.highlight ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.intro-card.highlight ul li:last-child {
    border-bottom: none;
}

.insight-section {
    background: #fff;
    padding: 80px 24px;
}

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

.insight-card-pair {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.insight-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.insight-content {
    flex: 1;
    min-width: 300px;
}

.insight-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

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

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

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

.testimonial-cards {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c2c2c;
}

.card-grid-3 {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #8b6f47;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 16px;
}

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

.composition-section {
    background: #f4efe9;
    padding: 80px 24px;
}

.composition-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c2c2c;
}

.composition-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.composition-card {
    flex: 1;
    min-width: 260px;
    background: #fff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.composition-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #8b6f47;
}

.composition-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.services-showcase {
    padding: 80px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-center {
    font-size: 38px;
    text-align: center;
    margin-bottom: 56px;
    color: #2c2c2c;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

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

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

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

.form-section {
    background: #fff;
    padding: 80px 24px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f7f5;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c2c2c;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 32px;
}

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

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

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

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

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

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

.disclaimer-section {
    padding: 60px 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-card {
    background: #fff5e6;
    border: 1px solid #e8d5b7;
    padding: 32px;
    border-radius: 8px;
}

.disclaimer-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #8b6f47;
}

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

.footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 60px 24px 24px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.references {
    font-size: 12px;
    line-height: 1.8;
}

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

.references a {
    color: #8b6f47;
    text-decoration: none;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 14px;
}

.about-hero {
    background: #8b6f47;
    color: #fff;
    padding: 80px 24px;
    text-align: center;
}

.about-hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

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

.about-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 24px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

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

.about-values {
    background: #f4efe9;
    padding: 80px 24px;
}

.about-values h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c2c2c;
}

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #8b6f47;
}

.value-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.services-list {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.services-list h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.contact-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 24px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 48px;
    color: #2c2c2c;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 32px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #8b6f47;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 24px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 48px;
    color: #2c2c2c;
}

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

.legal-page p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-page li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.thanks-page {
    max-width: 700px;
    margin: 120px auto;
    padding: 60px 40px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-page h1 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #8b6f47;
}

.thanks-page p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.thanks-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        width: 100%;
        flex-wrap: wrap;
    }

    .hero-card-overlay h1 {
        font-size: 32px;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}