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

:root {
    --primary-color: #c0392b;
    --primary-dark: #a93226;
    --secondary-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #229954;
}

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(192, 57, 43, 0.85), rgba(169, 50, 38, 0.85)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    width: 100%;
    padding: 80px 20px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

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

.hero-lead {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.4;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.story-intro {
    padding: 80px 20px;
    background: var(--bg-light);
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.intro-text-emphasis {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 30px 0;
    text-align: center;
}

.problem-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.problem-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

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

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.problem-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.insight-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.insight-content {
    font-size: 18px;
    line-height: 1.8;
}

.insight-content p {
    margin-bottom: 20px;
}

.stat-quote {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-left: 5px solid #fff;
    margin: 40px 0;
    font-size: 20px;
    font-style: italic;
}

.cta-mid {
    padding: 60px 20px;
    background: var(--bg-light);
}

.cta-box {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-box p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.method-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.method-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.method-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.method-step h3 {
    font-size: 28px;
    color: var(--text-dark);
}

.method-step p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.method-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonials-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.benefits-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.benefits-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-check {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.programs-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.programs-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.programs-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.program-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.program-name {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.program-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.program-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.program-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.program-features li:before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 8px;
}

.program-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
}

.btn-select {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.enroll-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    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: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.urgency-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

.urgency-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.urgency-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.urgency-note {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 20px;
}

.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--text-dark), #34495e);
    color: #fff;
    text-align: center;
}

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

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-final {
    display: inline-block;
    padding: 20px 50px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background: #229954;
    transform: scale(1.05);
}

.main-footer {
    background: var(--text-dark);
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

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

.footer-links a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-content {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
}

.sticky-text {
    font-weight: 600;
}

.sticky-btn {
    background: #fff;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 20px;
}

.story-block {
    margin-bottom: 60px;
}

.story-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.story-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-quote {
    background: var(--bg-light);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    margin: 30px 0;
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
}

.story-img {
    width: 100%;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.team-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.values-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.services-intro {
    padding: 60px 20px;
    background: var(--bg-white);
    text-align: center;
}

.intro-large {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-list {
    padding: 40px 20px 80px;
}

.service-item {
    max-width: 1000px;
    margin: 0 auto 50px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-item.featured-service {
    border: 3px solid var(--primary-color);
    position: relative;
}

.service-header {
    background: var(--bg-light);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 30px;
    color: var(--text-dark);
    margin: 0;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-content {
    padding: 40px;
}

.service-tagline {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-details {
    margin-bottom: 30px;
}

.detail-block {
    margin-bottom: 25px;
}

.detail-block h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.detail-block ul {
    list-style: none;
    padding-left: 0;
}

.detail-block li {
    padding: 8px 0;
    font-size: 16px;
    color: var(--text-light);
}

.detail-block li:before {
    content: "• ";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 8px;
}

.detail-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.comparison-section {
    padding: 60px 20px;
    background: var(--bg-white);
}

.comparison-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.comparison-table td {
    font-size: 15px;
}

.comparison-table tr:hover {
    background: var(--bg-light);
}

.faq-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-content {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.info-note {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 15px;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
}

.office-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.office-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.office-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

.office-image {
    width: 100%;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.faq-contact {
    padding: 60px 20px;
}

.thanks-section {
    padding: 80px 20px;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-info {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-next {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.thanks-next h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.thanks-next p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.thanks-contact {
    font-size: 17px;
    margin-bottom: 40px;
}

.thanks-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--text-dark);
    color: #fff;
}

.thanks-extra {
    padding: 60px 20px;
    background: var(--bg-light);
}

.thanks-extra h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.prep-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.prep-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.prep-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.prep-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.page-hero-simple {
    background: var(--bg-light);
    padding: 60px 20px 40px;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 38px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.last-updated {
    font-size: 16px;
    color: var(--text-light);
}

.legal-content {
    padding: 60px 20px 80px;
    background: var(--bg-white);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .intro-text {
        font-size: 18px;
    }

    .intro-text-emphasis {
        font-size: 26px;
    }

    .problem-grid,
    .programs-grid,
    .team-grid,
    .benefits-list {
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-content {
        padding: 12px 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-secondary,
    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .page-hero h1,
    .page-hero-simple h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
