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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.ad-disclosure {
    background-color: var(--background-light);
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--background-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-menu li a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

.hero-immersive {
    position: relative;
    height: 700px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-immersive img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--background-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.story-opener {
    padding: 100px 20px;
    background-color: var(--background-white);
}

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

.lead-paragraph {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.narrow-column p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.insight-reveal {
    padding: 120px 20px;
    background-color: var(--background-light);
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-image {
    flex: 1;
    background-color: #ddd;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.2;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.problem-amplification {
    padding: 100px 20px;
    background-color: var(--background-white);
}

.problem-amplification h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.loss-list {
    list-style: none;
    padding: 0;
}

.loss-list li {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.loss-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.trust-building {
    padding: 120px 20px;
    background-color: #fafbfc;
}

.content-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.trust-card {
    flex: 1;
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.trust-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 6px;
    background-color: #e0e0e0;
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.testimonials-flow {
    padding: 100px 20px;
    background-color: var(--primary-color);
    color: var(--background-white);
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto 50px;
}

.testimonial-item blockquote {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    padding: 40px;
    border-left: 5px solid var(--accent-color);
}

.testimonial-item cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.benefits-cascade {
    padding: 120px 20px;
    background-color: var(--background-white);
}

.benefits-cascade h2 {
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-align: center;
}

.benefit-block {
    margin-bottom: 50px;
}

.benefit-block h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.cta-emphasis {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--background-white);
}

.cta-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background-color: var(--background-white);
    color: var(--accent-color);
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.programs-reveal {
    padding: 120px 20px;
    background-color: var(--background-light);
}

.programs-reveal h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.programs-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.program-card {
    background-color: var(--background-white);
    border-radius: 12px;
    padding: 40px 35px;
    flex: 0 1 380px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

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

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

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--background-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.program-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.program-level {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.program-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    background-color: #ddd;
}

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

.program-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-dark);
    padding-left: 25px;
    position: relative;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.program-price {
    text-align: center;
    margin-bottom: 25px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.select-program {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-program:hover {
    background-color: #2980b9;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 50px 40px;
    border-radius: 10px;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: var(--primary-color);
    text-align: center;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    background-color: var(--background-white);
    transition: border-color 0.3s ease;
}

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

.submit-button {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--background-white);
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.final-assurance {
    padding: 100px 20px;
    background-color: #f0f8ff;
}

.final-assurance h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.final-assurance p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 60px 20px 20px;
}

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

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

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--background-white);
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 14px;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--background-white);
    padding: 25px 20px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--success-color);
    color: var(--background-white);
}

.cookie-accept:hover {
    background-color: #45a049;
}

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

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

.page-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.page-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--background-white);
    max-width: 800px;
    padding: 0 20px;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.page-hero-content p {
    font-size: 20px;
    margin-top: 15px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.about-story {
    padding: 100px 20px;
    background-color: var(--background-white);
}

.content-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.split-image {
    flex: 1;
    background-color: #ddd;
}

.split-image img {
    width: 100%;
    height: 100%;
}

.philosophy-section {
    padding: 100px 20px;
    background-color: var(--background-light);
}

.philosophy-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.philosophy-point {
    margin-bottom: 45px;
}

.philosophy-point h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.methodology {
    padding: 100px 20px;
    background-color: var(--background-white);
}

.methodology h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-align: center;
}

.method-cards {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.method-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 8px;
    min-width: 280px;
}

.method-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.results-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.results-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.results-list {
    list-style: none;
    margin: 30px 0;
}

.results-list li {
    padding: 15px 0;
    font-size: 18px;
    padding-left: 30px;
    position: relative;
}

.results-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 22px;
}

.cta-about {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.services-intro {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.services-intro p {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
}

.detailed-programs {
    padding: 60px 20px 120px;
    background-color: var(--background-light);
}

.program-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px;
    background-color: var(--background-white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    position: relative;
}

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

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--background-white);
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.program-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.program-detail-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.program-split {
    display: flex;
    gap: 50px;
}

.program-info {
    flex: 1;
}

.program-info img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: #ddd;
}

.program-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--primary-color);
}

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

.program-info ul {
    list-style: none;
    margin-top: 15px;
}

.program-info ul li {
    padding: 8px 0;
    font-size: 16px;
    padding-left: 25px;
    position: relative;
}

.program-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.program-curriculum {
    flex: 1;
}

.program-curriculum h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.module {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.module h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.module p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

.program-pricing {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.price-box {
    text-align: center;
    margin-bottom: 25px;
}

.price {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

.select-service-btn {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 16px 30px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.comparison-help {
    padding: 80px 20px;
    background-color: var(--background-white);
}

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

.decision-guide p {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.decision-guide ul {
    list-style: none;
    margin-bottom: 20px;
}

.decision-guide ul li {
    padding: 10px 0;
    font-size: 16px;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.decision-guide ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 24px;
}

.services-cta {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.contact-content {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-item .note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.contact-faq {
    flex: 1;
}

.contact-faq h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.thanks-section {
    padding: 100px 20px;
    background-color: var(--background-white);
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.selected-program-info {
    margin-bottom: 50px;
}

.program-selection {
    font-size: 18px;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 8px;
    display: inline-block;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.thanks-note {
    background-color: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #856404;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.button-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--background-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.legal-page {
    padding: 80px 20px;
    background-color: var(--background-white);
}

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

.legal-container h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-container ul {
    margin: 15px 0;
    padding-left: 25px;
}

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

.legal-container a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2980b9;
}

@media (max-width: 1024px) {
    .content-wrapper,
    .content-split,
    .contact-layout {
        flex-direction: column;
    }

    .programs-grid {
        flex-direction: column;
        align-items: center;
    }

    .program-card {
        flex: 1 1 100%;
        max-width: 450px;
    }

    .program-split {
        flex-direction: column;
    }

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

    .method-cards {
        flex-direction: column;
    }

    .method-card {
        flex: 1 1 100%;
    }
}

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

    .hero-content p {
        font-size: 17px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

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

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

    .button-secondary {
        width: 100%;
    }
}