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

:root {
    --primary-color: #2D3E50;
    --secondary-color: #5A7BA6;
    --accent-color: #C17F5C;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #F8F9FA;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, #2D3E50, #5A7BA6);
    padding: 160px 0 100px;
    color: #fff;
    text-align: center;
}

.hero-small {
    padding: 140px 0 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 900;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background: #a66849;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(193, 127, 92, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.section {
    padding: 80px 0;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

.services-section {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

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

.service-content {
    padding: 24px;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-section {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.programs-section {
    background: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.program-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
}

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

.program-featured {
    border: 3px solid var(--accent-color);
}

.program-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.program-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex: 1;
    padding-right: 16px;
}

.program-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.program-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.program-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.program-features {
    list-style: none;
    margin-bottom: 24px;
}

.program-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.program-features li:last-child {
    border-bottom: none;
}

.program-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.program-footer {
    padding-top: 16px;
    border-top: 1px solid #eee;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.testimonial-full {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 32px;
}

.testimonial-full-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-full-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-full-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonial-full-info p {
    color: var(--text-light);
}

.testimonial-full-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-section {
    background: var(--bg-light);
}

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

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    color: var(--secondary-color);
    transition: var(--transition);
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer-content {
    padding: 0 24px 24px;
}

.faq-answer-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.legal-hero {
    background: linear-gradient(135deg, #2D3E50, #5A7BA6);
    padding: 140px 0 80px;
    text-align: center;
    color: #fff;
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.legal-wrapper h2 {
    font-size: 2rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-wrapper h2:first-of-type {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-wrapper p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.legal-wrapper ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-wrapper ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-wrapper a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-wrapper a:hover {
    color: var(--primary-color);
}

.footer {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-about p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-company-info {
    background: rgba(0,0,0,0.2);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.company-info-block h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.company-info-block p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-legal p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: bottom 0.4s ease;
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-content {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cookie-text h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-settings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.cookie-settings-content {
    position: relative;
    background: #fff;
    max-width: 600px;
    width: 90%;
    padding: 40px;
    border-radius: 12px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1;
}

.cookie-settings-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.cookie-settings-content > p {
    margin-bottom: 24px;
    color: var(--text-light);
}

.cookie-category {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.cookie-category input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-category strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.cookie-category-desc {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-settings-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.cookie-settings-buttons .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 32px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        border-bottom: 1px solid #eee;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .company-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

    .legal-wrapper {
        padding: 32px 24px;
    }

    .legal-hero h1 {
        font-size: 2rem;
    }

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

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

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

    .cookie-settings-content {
        padding: 24px;
    }

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

    .cookie-settings-buttons .btn {
        width: 100%;
    }

    .program-header {
        flex-direction: column;
        gap: 12px;
    }

    .program-title {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}


.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    background: #fff;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: #2D3E50;
    font-weight: 700;
}

.legal-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 48px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2D3E50;
    font-weight: 700;
    border-bottom: 2px solid #5A7BA6;
    padding-bottom: 8px;
}

.legal-content h2:first-of-type {
    margin-top: 32px;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #5A7BA6;
    font-weight: 600;
}

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

.legal-content ul {
    margin: 16px 0 24px 0;
    padding-left: 28px;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #333;
}

.legal-content a {
    color: #5A7BA6;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.legal-content a:hover {
    color: #C17F5C;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 24px 60px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
        margin-top: 32px;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 90px 20px 50px;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }

    .legal-content h2 {
        font-size: 1.2rem;
    }

    .legal-content p {
        font-size: 0.95rem;
    }
}

.thank-you-section {
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    background: #fff;
}

.thank-you-content {
    max-width: 700px;
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 32px;
}

.thank-you-icon i {
    font-size: 80px;
    color: #C17F5C;
}

.thank-you-title {
    font-size: 2.5rem;
    color: #2D3E50;
    margin-bottom: 24px;
    font-weight: 700;
}

.thank-you-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 100px 24px 60px;
        min-height: calc(100vh - 350px);
    }

    .thank-you-icon i {
        font-size: 60px;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .thank-you-section {
        padding: 90px 20px 50px;
    }

    .thank-you-title {
        font-size: 1.75rem;
    }

    .thank-you-message {
        font-size: 0.95rem;
    }
}