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

:root {
    --primary-color: #2C5F7E;
    --secondary-color: #4A90B5;
    --accent-color: #E07A3C;
    --dark-text: #1A1A1A;
    --light-text: #4A4A4A;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #28A745;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.ad-disclosure {
    background-color: #FFF9E6;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #FFE5A1;
}

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

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

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

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-text);
}

.hero-card {
    max-width: 1400px;
    margin: 48px auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content p {
    font-size: 19px;
    color: var(--light-text);
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-light);
}

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

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

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

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

.intro-cards {
    background-color: var(--bg-light);
    padding: 80px 0;
}

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

.info-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 280px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.methodology-section {
    padding: 96px 0;
}

.method-card {
    display: flex;
    gap: 64px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 56px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.method-text {
    flex: 1.2;
}

.method-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--dark-text);
    font-weight: 700;
    line-height: 1.3;
}

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

.stat-row {
    display: flex;
    gap: 48px;
    margin-top: 32px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--light-text);
}

.method-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-light);
}

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

.services-preview {
    background-color: var(--bg-light);
    padding: 96px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-weight: 700;
}

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

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark-text);
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.7;
    flex: 1;
}

.service-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.service-details span {
    font-size: 14px;
    color: var(--light-text);
    background-color: var(--bg-light);
    padding: 6px 14px;
    border-radius: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

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

.enrollment-section {
    padding: 96px 0;
    background-color: var(--bg-white);
}

.enrollment-card {
    background-color: var(--bg-light);
    padding: 56px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.enrollment-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-weight: 700;
}

.enrollment-card > p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.selected-service-display {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid var(--accent-color);
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display h3 {
    font-size: 18px;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.selected-service-display p {
    font-size: 15px;
    color: var(--light-text);
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.submit-btn {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    align-self: flex-start;
}

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

.submit-btn:disabled {
    background-color: #CCC;
    cursor: not-allowed;
    transform: none;
}

.testimonials-section {
    padding: 96px 0;
    background-color: var(--bg-light);
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--dark-text);
    font-weight: 700;
}

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

.testimonial-card {
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 280px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--dark-text);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--light-text);
    font-size: 14px;
}

.footer {
    background-color: #1A1A1A;
    color: #E0E0E0;
    padding: 64px 0 24px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #B0B0B0;
}

.footer-column a {
    display: block;
    color: #B0B0B0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    background-color: #252525;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #A0A0A0;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #808080;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 15px;
    color: var(--light-text);
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

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

.cookie-btn.accept:hover {
    background-color: #218838;
}

.cookie-btn.reject {
    background-color: #6C757D;
    color: var(--bg-white);
}

.cookie-btn.reject:hover {
    background-color: #5A6268;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

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

.content-card {
    display: flex;
    gap: 64px;
    align-items: center;
    margin-bottom: 64px;
}

.content-card.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-text);
    font-weight: 700;
}

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

.content-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-light);
}

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

.principles-section {
    background-color: var(--bg-light);
    padding: 96px 0;
}

.principles-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--dark-text);
    font-weight: 700;
}

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

.principle-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
}

.principle-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.process-section {
    padding: 96px 0;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--dark-text);
    font-weight: 700;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.timeline-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding-top: 8px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-text);
    font-weight: 700;
}

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

.stats-showcase {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 96px 0;
}

.stats-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 220px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-value {
    font-size: 52px;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 12px;
}

.stat-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.approach-detail {
    padding: 96px 0;
}

.detail-card {
    display: flex;
    gap: 64px;
    align-items: center;
}

.detail-card.reverse {
    flex-direction: row-reverse;
}

.detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-light);
}

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

.detail-text {
    flex: 1;
}

.detail-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-text);
    font-weight: 700;
}

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

.services-full {
    padding: 64px 0;
}

.services-intro-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 48px;
}

.services-intro-card h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: var(--dark-text);
    font-weight: 700;
}

.inclusion-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.inclusion-item {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 220px;
    font-size: 16px;
    color: var(--light-text);
}

.service-card-full {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
    display: flex;
    gap: 40px;
}

.service-image-full {
    flex: 0 0 400px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-details-full {
    flex: 1;
    padding: 40px;
}

.service-details-full h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--dark-text);
    font-weight: 700;
}

.service-details-full > p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 24px;
    line-height: 1.7;
}

.curriculum-preview {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.curriculum-preview h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-text);
    font-weight: 700;
}

.curriculum-preview ul {
    list-style: none;
    padding: 0;
}

.curriculum-preview li {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.curriculum-preview li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.programme-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 15px;
    color: var(--light-text);
}

.price-section {
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 4px;
}

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

.enrollment-prompt {
    padding: 64px 0;
    background-color: var(--bg-light);
}

.prompt-card {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.prompt-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--dark-text);
    font-weight: 700;
}

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

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

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

.contact-card {
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-card p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 8px;
}

.email-display {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 17px;
}

.note {
    font-size: 14px;
    color: #808080;
    font-style: italic;
    margin-top: 12px;
}

.location-section {
    padding: 64px 0;
    background-color: var(--bg-light);
}

.location-card {
    display: flex;
    gap: 48px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.location-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.location-details {
    flex: 1;
}

.location-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-weight: 700;
}

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

.faq-section {
    padding: 64px 0;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
}

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

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

.thanks-hero {
    padding: 96px 0;
    background-color: var(--bg-light);
}

.thanks-card {
    background-color: var(--bg-white);
    padding: 56px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

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

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

.programme-confirmation {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.programme-details h3 {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.programme-name {
    font-size: 22px;
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 8px;
}

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

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--dark-text);
    font-weight: 700;
    text-align: center;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

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

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 700;
}

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

.timeline {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-text);
    font-weight: 700;
}

.contact-info p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 8px;
}

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

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #C96A31;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s, transform 0.2s;
    display: inline-block;
}

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

.preparation-section {
    padding: 64px 0;
}

.preparation-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--dark-text);
    font-weight: 700;
}

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

.prep-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 260px;
}

.prep-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.legal-content {
    padding: 64px 0;
}

.legal-section {
    margin-bottom: 48px;
}

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

.legal-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

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

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 16px 24px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: block;
    }

    .hero-card {
        flex-direction: column;
        gap: 32px;
    }

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

    .method-card {
        flex-direction: column;
        padding: 32px;
    }

    .content-card,
    .content-card.reverse,
    .detail-card,
    .detail-card.reverse {
        flex-direction: column;
    }

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

    .service-card-full {
        flex-direction: column;
    }

    .service-image-full {
        flex: 0 0 300px;
        width: 100%;
    }

    .location-card {
        flex-direction: column;
    }

    .stat-row {
        flex-direction: column;
        gap: 24px;
    }

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

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

    .section-title,
    .principles-section h2,
    .process-section h2,
    .testimonials-section h2 {
        font-size: 32px;
    }

    .method-text h2,
    .content-text h2 {
        font-size: 28px;
    }

    .service-price,
    .price-amount {
        font-size: 28px;
    }

    .enrollment-card {
        padding: 32px 24px;
    }

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

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

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