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

:root {
    --primary-color: #2c5f8d;
    --primary-dark: #1a3d5c;
    --secondary-color: #e8f1f8;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --border-color: #d4d4d4;
    --background-light: #f9fafb;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style-position: inside;
}

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

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

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

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

.ad-disclosure {
    font-size: 13px;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 4px;
}

.hero-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    background-color: #c8dce8;
    border-radius: 8px;
    overflow: hidden;
}

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

.btn-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--background-light);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--border-color);
}

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

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

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

.courses-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

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

.course-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-basis: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 220px;
    background-color: #e0e7ed;
    overflow: hidden;
}

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

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

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

.course-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.course-details span {
    font-size: 14px;
    padding: 6px 12px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    color: var(--text-dark);
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-course {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 0;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-select-course:hover {
    background-color: var(--primary-dark);
}

.approach-section {
    padding: 80px 0;
    background-color: var(--white);
}

.approach-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.benefits-list {
    list-style: none;
    margin-top: 25px;
}

.benefits-list li {
    font-size: 17px;
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-light);
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.approach-image {
    flex: 1;
    background-color: #dce5eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.testimonials-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

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

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 280px;
}

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

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

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

.registration-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.registration-section > div > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.selected-course-display {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.selected-course-display p {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-dark);
}

.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 textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 0;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.8;
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    border-top: 1px solid #3a3a3a;
    padding-top: 30px;
    text-align: center;
    color: #888888;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #777777;
    max-width: 900px;
    margin: 15px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.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.6;
}

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

.page-header {
    background-color: var(--secondary-color);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-header p {
    font-size: 20px;
    color: var(--text-light);
}

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

.about-story h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

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

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

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

.team-member {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-basis: calc(33.333% - 27px);
    min-width: 280px;
}

.member-image {
    width: 100%;
    height: 300px;
    background-color: #d8e2e8;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 24px;
    padding: 20px 25px 10px;
    color: var(--text-dark);
}

.team-member .role {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0 25px 15px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    padding: 0 25px 25px;
}

.philosophy-section {
    padding: 80px 0;
    background-color: var(--white);
}

.philosophy-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-image {
    flex: 1;
    background-color: #dae4ea;
    border-radius: 8px;
    overflow: hidden;
}

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

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.philosophy-text ul {
    list-style: none;
    margin: 25px 0;
}

.philosophy-text ul li {
    font-size: 17px;
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

.philosophy-text ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.values-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 250px;
}

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

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

.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 19px;
    color: var(--white);
    margin-bottom: 35px;
}

.cta-section .btn-large {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-large:hover {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
}

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

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

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

.detailed-courses {
    padding: 80px 0;
    background-color: var(--background-light);
}

.course-detail-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.course-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

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

.course-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 14px;
    padding: 8px 16px;
    background-color: var(--secondary-color);
    border-radius: 5px;
    color: var(--text-dark);
}

.course-detail-price {
    text-align: right;
}

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

.price-note {
    font-size: 14px;
    color: var(--text-muted);
}

.course-detail-content {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.course-detail-description {
    flex: 1;
    min-width: 300px;
}

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

.course-detail-description h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.course-detail-description ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.course-detail-description ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.course-detail-image {
    flex: 0 0 400px;
    background-color: #d9e3e9;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

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

.what-included {
    padding: 80px 0;
    background-color: var(--white);
}

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

.included-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.included-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.included-item h4 {
    font-size: 19px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

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

.contact-note {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-note h4 {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.contact-image {
    flex: 1;
    background-color: #dbe5eb;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

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

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

.location-section > div > p {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.location-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
}

.location-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.faq-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    background-color: var(--background-light);
    border-radius: 8px;
}

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

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

.thanks-section {
    padding: 80px 0;
    background-color: var(--white);
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 100px;
}

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

.thanks-message {
    margin-bottom: 50px;
}

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

.course-confirmation {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 500px;
    border-left: 4px solid var(--primary-color);
}

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

.course-confirmation p {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.steps-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    display: flex;
    gap: 20px;
    text-align: left;
}

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

.step-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-reminder {
    font-size: 16px;
    color: var(--text-muted);
}

.additional-info {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.info-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.info-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

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

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-page ul {
    margin: 15px 0 15px 30px;
}

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

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-updated {
    margin-top: 50px;
    font-style: italic;
    color: var(--text-muted);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background-color: var(--secondary-color);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 15px;
}

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .approach-content,
    .philosophy-content,
    .contact-layout {
        flex-direction: column;
    }

    .course-detail-content {
        flex-direction: column;
    }

    .course-detail-image {
        flex: 1 1 100%;
        height: 250px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

    .course-card {
        flex-basis: 100%;
    }

    .team-member {
        flex-basis: 100%;
    }
}