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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #38a169;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2f855a;
}

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

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

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5f7c;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5f7c;
}

.ad-notice {
    font-size: 0.85rem;
    color: #718096;
    font-style: italic;
    padding: 0.4rem 0.8rem;
    background-color: #f7fafc;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    min-height: 550px;
    background-image: url('https://images.pexels.com/photos/7654625/pexels-photo-7654625.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.85) 0%, rgba(28, 75, 104, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #f6ad55;
    color: #1a202c;
}

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

.cta-secondary {
    background-color: transparent;
    color: #1a202c;
    border: 2px solid #1a202c;
}

.cta-secondary:hover {
    background-color: #1a202c;
    color: #ffffff;
}

.intro-cards {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-card {
    flex: 1 1 320px;
    background-color: #ffffff;
    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;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.card-body {
    padding: 2rem;
}

.card-body h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.card-body p {
    color: #4a5568;
    line-height: 1.7;
}

.approach-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.approach-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.approach-text {
    flex: 1 1 500px;
}

.approach-text h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1.8rem;
}

.approach-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-visual {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.courses-preview {
    padding: 5rem 0;
    background-color: #edf2f7;
}

.section-title {
    font-size: 2.8rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3.5rem;
}

.card-grid-large {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.course-card {
    flex: 1 1 360px;
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.course-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-details h3 {
    font-size: 1.6rem;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.course-details p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f7c;
}

.duration {
    color: #718096;
    font-size: 1rem;
}

.select-course {
    width: 100%;
    padding: 1rem;
    background-color: #2c5f7c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-course:hover {
    background-color: #1c4b68;
    transform: translateY(-2px);
}

.enrollment-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.form-card {
    max-width: 650px;
    margin: 0 auto;
    background-color: #f7fafc;
    padding: 3rem;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.form-card h2 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.form-intro {
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f7c;
}

.form-group input[readonly] {
    background-color: #edf2f7;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1.1rem;
    background-color: #38a169;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.trust-section h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1 1 320px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: #2c5f7c;
    font-weight: 600;
}

.final-cta {
    padding: 5rem 0;
    background-color: #2c5f7c;
    color: #ffffff;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 3rem 0;
    background-color: #edf2f7;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    color: #cbd5e0;
    font-size: 0.9rem;
}

.page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #2c5f7c 0%, #1c4b68 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.4rem;
    color: #e2e8f0;
}

.about-content {
    padding: 5rem 0;
}

.content-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.content-main {
    flex: 2 1 600px;
}

.content-main h2 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.content-main p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-sidebar {
    flex: 1 1 300px;
}

.sidebar-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.sidebar-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sidebar-content {
    padding: 2rem;
    background-color: #ffffff;
}

.sidebar-content h3 {
    font-size: 1.6rem;
    color: #2d3748;
    margin-bottom: 1.2rem;
}

.value-list {
    list-style: none;
}

.value-list li {
    padding: 0.8rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.value-list li:last-child {
    border-bottom: none;
}

.team-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.team-member {
    flex: 1 1 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.member-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

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

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.member-info p {
    color: #4a5568;
    line-height: 1.7;
}

.community-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.community-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.community-visual {
    flex: 1 1 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.community-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-text {
    flex: 1 1 500px;
}

.community-text h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1.8rem;
}

.community-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-about {
    padding: 5rem 0;
    background-color: #edf2f7;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.services-full {
    padding: 5rem 0;
}

.service-card-full {
    margin-bottom: 4rem;
}

.service-content-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

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

.service-image-large {
    flex: 1 1 450px;
    min-height: 400px;
}

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

.service-details-large {
    flex: 1 1 500px;
    padding: 3rem;
}

.service-details-large h2 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.service-subtitle {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-details-large > p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features ul li {
    padding: 0.7rem 0 0.7rem 1.8rem;
    color: #4a5568;
    position: relative;
}

.service-features ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    color: #718096;
    font-size: 1rem;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5f7c;
}

.info-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.info-section h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-item {
    flex: 1 1 320px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-item h3 {
    font-size: 1.6rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.info-item p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-content {
    padding: 5rem 0;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info-section {
    flex: 1 1 450px;
}

.contact-card {
    background-color: #f7fafc;
    padding: 3rem;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
}

.contact-card h2 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: #2c5f7c;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-email {
    font-family: monospace;
    font-size: 1rem;
}

.visit-info {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.visit-info h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1.2rem;
}

.visit-info p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-map-section {
    flex: 1 1 450px;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    padding: 2rem;
}

.map-content p {
    font-size: 1.2rem;
    color: #4a5568;
}

.faq-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

.next-steps {
    padding: 5rem 0;
    background-color: #ffffff;
    text-align: center;
}

.next-steps h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.next-steps p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-details {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.enrollment-summary {
    font-size: 1.2rem;
}

.thanks-info {
    background-color: #ffffff;
    color: #2d3748;
    padding: 3rem;
    border-radius: 14px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-info h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.next-steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1 1 calc(50% - 1rem);
    display: flex;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #38a169;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.preparation-section {
    padding: 5rem 0;
}

.prep-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.prep-card {
    flex: 1 1 320px;
    background-color: #f7fafc;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.prep-card h3 {
    font-size: 1.6rem;
    color: #2d3748;
    margin-bottom: 1.2rem;
}

.prep-card p {
    color: #4a5568;
    line-height: 1.7;
}

.prep-card ul {
    list-style: none;
}

.prep-card ul li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    color: #4a5568;
    position: relative;
}

.prep-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f7c;
    font-weight: 700;
    font-size: 1.5rem;
}

.legal-content {
    padding: 5rem 0;
}

.legal-content h1 {
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.updated-date {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1.2rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: #2c5f7c;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

.legal-section a {
    color: #2c5f7c;
    text-decoration: none;
}

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

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .card-grid-large {
        gap: 1.5rem;
    }

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

    .service-content-layout {
        flex-direction: column;
    }

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

    .service-image-large {
        min-height: 300px;
    }

    .faq-item {
        flex: 1 1 100%;
    }

    .step-item {
        flex: 1 1 100%;
    }
}