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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f7fafc;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.ad-label {
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.ad-label-mobile {
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu a {
    padding: 0.8rem 0;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-menu.hidden {
    display: none;
}

.hero-card {
    margin-top: 0;
}

.hero-visual {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.92) 0%, rgba(26, 32, 44, 0.88) 100%);
    width: 100%;
    padding: 4rem 0;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-overlay p {
    color: #e2e8f0;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
}

.cta-primary {
    display: inline-block;
    background-color: #f6ad55;
    color: #2d3748;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #ed8936;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(246, 173, 85, 0.3);
}

.intro-cards {
    padding: 4rem 0;
}

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

.info-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    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(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

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

.card-body {
    padding: 1.8rem;
}

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

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

.problem-amplification {
    background-color: #edf2f7;
    padding: 5rem 0;
}

.split-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.content-left {
    flex: 2;
}

.content-right {
    flex: 1;
}

.content-left h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

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

.content-left a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
}

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

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

.insight-card h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.insight-card ul {
    list-style: none;
    padding-left: 0;
}

.insight-card ul li {
    padding: 0.6rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.insight-card ul li:last-child {
    border-bottom: none;
}

.testimonial-cards {
    padding: 4rem 0;
    background-color: #ffffff;
}

.testimonial-cards h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2b6cb0;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #4a5568;
    font-style: normal;
}

.insight-reveal {
    padding: 5rem 0;
    background-color: #2d3748;
}

.reveal-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.reveal-text {
    flex: 1;
}

.reveal-text h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

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

.reveal-text a:hover {
    text-decoration: underline;
}

.reveal-visual {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

.reveal-visual img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.services-preview {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.services-preview h2 {
    font-size: 2.8rem;
    color: #1a202c;
    text-align: center;
    margin-bottom: 1rem;
}

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 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;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-header {
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    padding: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
}

.service-price {
    background-color: #f6ad55;
    color: #2d3748;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-content {
    padding: 2rem;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    padding-left: 1.5rem;
    position: relative;
}

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

.select-service {
    width: 100%;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2c5282;
}

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

.enrollment-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.enrollment-info {
    flex: 1;
}

.enrollment-info h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.enrollment-info p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
    border-left: 3px solid #cbd5e0;
    padding-left: 1rem;
    margin-top: 2rem;
}

.enrollment-form-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.enrollment-form .form-group {
    margin-bottom: 1.5rem;
}

.enrollment-form label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.enrollment-form input {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.enrollment-form input:focus {
    outline: none;
    border-color: #2b6cb0;
}

.btn-submit {
    width: 100%;
    background-color: #f6ad55;
    color: #2d3748;
    padding: 1.1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: #90cdf4;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #63b3ed;
}

.footer-references {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-references h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1.5rem;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
}

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

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

.cookie-content p {
    color: #e2e8f0;
    margin: 0;
    flex: 1;
}

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

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

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

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

.btn-reject {
    background-color: #e2e8f0;
    color: #2d3748;
}

.btn-reject:hover {
    background-color: #cbd5e0;
}

.page-hero {
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    padding: 4rem 0;
    text-align: center;
}

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

.page-hero p {
    color: #e2e8f0;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.content-card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.card-content-full h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

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

.split-card-section {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.split-card-left,
.split-card-right {
    flex: 1;
}

.split-card-right h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.split-card-right p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.split-card-right a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
}

.split-card-right a:hover {
    text-decoration: underline;
}

.philosophy-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.philosophy-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.philosophy-card a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
}

.philosophy-card a:hover {
    text-decoration: underline;
}

.approach-section {
    background-color: #edf2f7;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.approach-section h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 2rem;
    text-align: center;
}

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

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    background-color: #ffffff;
    padding: 1.8rem;
    border-radius: 8px;
    border-left: 4px solid #2b6cb0;
}

.approach-item h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.approach-item p {
    color: #4a5568;
    line-height: 1.6;
}

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

.outcomes-section h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

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

.outcomes-section a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
}

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

.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    overflow: hidden;
}

.service-detail-header {
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    color: #ffffff;
    font-size: 2rem;
    margin: 0;
}

.price-badge {
    background-color: #f6ad55;
    color: #2d3748;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-detail-content {
    display: flex;
    gap: 3rem;
    padding: 3rem;
}

.detail-text {
    flex: 1;
}

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

.detail-text h3 {
    font-size: 1.7rem;
    color: #2d3748;
    margin: 2rem 0 1rem;
}

.detail-text ul {
    list-style: none;
    padding-left: 0;
}

.detail-text ul li {
    padding: 0.6rem 0;
    color: #4a5568;
    padding-left: 1.5rem;
    position: relative;
}

.detail-text ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

.detail-text a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
}

.detail-text a:hover {
    text-decoration: underline;
}

.detail-image {
    flex: 1;
    min-height: 400px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

.detail-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.cta-section {
    padding: 4rem 0;
    background-color: #edf2f7;
}

.cta-card {
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.cta-card h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #e2e8f0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #f6ad55;
    color: #2d3748;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

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

.contact-grid {
    display: flex;
    gap: 3rem;
}

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.contact-info-card {
    flex: 1;
    background-color: #edf2f7;
    padding: 2.5rem;
    border-radius: 12px;
}

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

.contact-info-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.thanks-content > p {
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.thanks-details h2 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.step-item {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #48bb78;
}

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

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

.thanks-programme-info {
    background-color: #edf2f7;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.thanks-programme-info h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.thanks-programme-info p {
    color: #2b6cb0;
    font-weight: 600;
    font-size: 1.2rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2b6cb0;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #e2e8f0;
    color: #2d3748;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
}

.legal-page {
    padding: 4rem 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

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

.legal-content h3 {
    font-size: 1.5rem;
    color: #4a5568;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: #2b6cb0;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

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

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

    .split-content,
    .reveal-content,
    .enrollment-container,
    .contact-grid,
    .split-card-section,
    .service-detail-content {
        flex-direction: column;
    }

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

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

    .philosophy-card,
    .approach-item {
        flex: 1 1 100%;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .detail-image {
        min-height: 300px;
    }

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

    .cookie-actions {
        justify-content: center;
    }

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

    .page-hero h1 {
        font-size: 2rem;
    }

    .legal-page h1 {
        font-size: 2rem;
    }
}

.hidden {
    display: none;
}