* {
    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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-main {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
}

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

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

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

.ad-notice {
    font-size: 12px;
    color: #718096;
    padding: 6px 12px;
    background: #edf2f7;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie {
    background: #48bb78;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #38a169;
}

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

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

.hero-section {
    display: flex;
    min-height: 600px;
    background: #f7fafc;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.hero-visual {
    flex: 1;
    background: #cbd5e0;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-card-main {
    max-width: 540px;
}

.hero-card-main h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 30px;
}

.cta-primary {
    padding: 16px 32px;
    background: #3182ce;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.intro-cards {
    padding: 80px 20px;
    background: #ffffff;
}

.card-grid-intro {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: #edf2f7;
    border-radius: 12px;
    text-align: center;
}

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

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

.story-section {
    padding: 100px 20px;
    background: #ffffff;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 400px;
    background: #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-content {
    flex: 1;
    min-width: 400px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.story-content p {
    margin-bottom: 16px;
    color: #4a5568;
    font-size: 17px;
    line-height: 1.8;
}

.link-arrow {
    display: inline-block;
    color: #3182ce;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.science-section {
    padding: 80px 20px;
    background: #2d3748;
    color: #ffffff;
}

.science-card-large {
    max-width: 1000px;
    margin: 0 auto;
}

.science-card-large h2 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.science-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.science-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.science-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #90cdf4;
}

.science-item p {
    line-height: 1.7;
    color: #e2e8f0;
}

.citation {
    color: #90cdf4;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.programs-section {
    padding: 100px 20px;
    background: #f7fafc;
}

.section-title-center {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.section-title-left {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a202c;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.program-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

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

.program-image {
    width: 100%;
    height: 220px;
    background: #cbd5e0;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.program-content {
    padding: 30px;
}

.program-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3748;
}

.program-content p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.program-features span {
    padding: 6px 12px;
    background: #edf2f7;
    border-radius: 20px;
    font-size: 13px;
    color: #4a5568;
    font-weight: 600;
}

.program-price {
    font-size: 28px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 20px;
}

.btn-select-program {
    width: 100%;
    padding: 14px;
    background: #3182ce;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-program:hover {
    background: #2c5aa0;
}

.testimonials-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    background: #edf2f7;
    border-radius: 12px;
    border-left: 4px solid #3182ce;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #4a5568;
}

.form-section {
    padding: 100px 20px;
    background: #f7fafc;
}

.form-card-main {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a202c;
}

.form-intro p {
    color: #4a5568;
    font-size: 16px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 15px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3182ce;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: #3182ce;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    padding: 16px;
    background: #48bb78;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #38a169;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #fff5f5;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #feb2b2;
}

.disclaimer-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #c53030;
}

.disclaimer-card p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 15px;
}

.footer-main {
    background: #2d3748;
    color: #e2e8f0;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    color: #cbd5e0;
    margin-bottom: 8px;
}

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

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

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

.footer-column ul li a:hover {
    color: #90cdf4;
}

.footer-references {
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-references h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references ol li {
    margin-bottom: 12px;
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-references ol li a {
    color: #90cdf4;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    color: #a0aec0;
}

.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

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

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

.content-section {
    padding: 80px 20px;
    background: #ffffff;
}

.content-layout-split {
    display: flex;
    gap: 60px;
}

.content-main {
    flex: 2;
    min-width: 400px;
}

.content-main h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a202c;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 17px;
}

.insight-card {
    padding: 30px;
    background: #ebf8ff;
    border-left: 4px solid #3182ce;
    border-radius: 8px;
    margin: 40px 0;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5aa0;
}

.insight-card p {
    color: #2d3748;
}

.principle-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.principle-item {
    padding: 30px;
    background: #f7fafc;
    border-radius: 10px;
}

.principle-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

.checkmark-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.checkmark-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.7;
}

.checkmark-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 18px;
}

.stats-grid {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    padding: 30px;
    background: #f7fafc;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.5;
}

.stats-note {
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

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

.sidebar-card {
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.sidebar-card img {
    width: 100%;
    height: 200px;
    display: block;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    padding: 0 20px;
    margin-top: 20px;
    color: #2d3748;
}

.sidebar-card p {
    padding: 0 20px 20px;
    color: #4a5568;
    line-height: 1.7;
}

.cta-section-alt {
    padding: 80px 20px;
    background: #edf2f7;
}

.cta-card-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-card-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.cta-card-centered p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background: #3182ce;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: #2c5aa0;
    transform: translateY(-2px);
}

.services-overview {
    padding: 60px 20px;
    background: #ffffff;
}

.services-intro-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px;
    background: #f7fafc;
    border-radius: 16px;
}

.services-intro-card h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3182ce;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d3748;
}

.process-step p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.process-arrow {
    font-size: 32px;
    color: #cbd5e0;
}

.services-catalog {
    padding: 80px 20px;
    background: #f7fafc;
}

.catalog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card-detail {
    flex: 0 0 calc(50% - 20px);
    min-width: 400px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.service-header {
    width: 100%;
    height: 250px;
    background: #cbd5e0;
    overflow: hidden;
}

.service-header img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-body {
    padding: 40px;
}

.service-body h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-description {
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
}

.detail-item {
    font-size: 15px;
    color: #2d3748;
}

.detail-item strong {
    color: #1a202c;
}

.service-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.topic-tag {
    padding: 8px 14px;
    background: #ebf8ff;
    color: #2c5aa0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 20px;
    text-align: center;
}

.btn-service-select {
    width: 100%;
    padding: 16px;
    background: #3182ce;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service-select:hover {
    background: #2c5aa0;
}

.contact-section {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.contact-info-main h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
}

.contact-card {
    padding: 30px;
    background: #f7fafc;
    border-radius: 12px;
    margin-bottom: 24px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
}

.contact-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #2d3748;
}

.faq-item p {
    font-size: 15px;
    color: #4a5568;
}

.contact-visual {
    flex: 1;
    min-width: 400px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #cbd5e0;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
}

.visual-overlay p {
    font-size: 16px;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 20px;
    background: #f7fafc;
    min-height: 600px;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 50px;
}

.thanks-info {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #2d3748;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.step-icon {
    width: 50px;
    height: 50px;
    background: #3182ce;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d3748;
}

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

.selected-program {
    padding: 30px;
    background: #ebf8ff;
    border-radius: 12px;
    margin-bottom: 40px;
}

.selected-program h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5aa0;
}

.selected-program p {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
}

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

.btn-primary {
    padding: 14px 32px;
    background: #3182ce;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #2c5aa0;
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: #3182ce;
    text-decoration: none;
    border: 2px solid #3182ce;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ebf8ff;
}

.support-info {
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.support-info p {
    color: #4a5568;
}

.support-info strong {
    color: #2d3748;
}

.legal-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-date {
    color: #718096;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #2d3748;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-content ul li,
.legal-content ol li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3182ce;
    text-decoration: none;
}

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

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

.cookie-table thead {
    background: #f7fafc;
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
}

.cookie-table td {
    padding: 12px;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-section {
        flex-direction: column;
    }

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

    .card-grid-intro,
    .card-grid-programs,
    .testimonial-grid,
    .stats-grid {
        flex-direction: column;
    }

    .story-layout,
    .content-layout-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .process-arrow {
        transform: rotate(90deg);
    }
}