/* Font Display Optimization */
/* Note: Font Awesome fonts from CDN cannot have font-display controlled via CSS */
/* Google Fonts already include display=swap in the URL */
/* For optimal font loading, consider self-hosting Font Awesome fonts with font-display: swap */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e88e5;
    --primary-dark: #1565c0;
    --secondary-color: #43a047;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 120px;
}

.main-content {
    padding-top: 0;
    position: relative;
    z-index: 1;
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Top Bar */
.top-bar {
    background: var(--text-dark);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

/* Calculate top-bar height for header positioning */
.top-bar {
    height: auto;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.contact-item strong {
    margin-right: 5px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    transform: translateY(0);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.brand-name:hover {
    color: var(--primary-color);
}

.tagline {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.nav-menu a i {
    font-size: 10px;
    transition: transform 0.3s;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown:hover .dropdown-toggle i,
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    font-weight: 400;
    font-size: 14px;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-menu a::after {
    display: none;
}

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

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img,
.carousel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-content {
    position: absolute;
    left: 80px;
    top: 0;
    width: 33.333%;
    height: 100%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    background: transparent;
}

.slide-content h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #17a2b8;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.slide-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.7;
    color: #495057;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.slide-content .btn-primary {
    display: block;
    background: #17a2b8;
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s, transform 0.3s;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: #17a2b8;
    color: var(--white);
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    transition: background 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicator.active {
    background: var(--white);
}


/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: var(--white);
}

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

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

.welcome-content p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

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

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-secondary {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

.btn-secondary:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    margin-top: 0;
    z-index: 0;
    min-height: 300px;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

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

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    line-height: 1.8;
}

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

.values-list strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

/* Services Overview Section */
.services-overview-section {
    padding: 80px 0;
}

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

.services-overview-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.services-overview-list {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

.services-overview-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.services-cta {
    margin-top: 40px;
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 10px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.services-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.services-links .btn-secondary {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.services-links .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Services Detail Section */
.services-detail-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-detail {
    background: var(--white);
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
}

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

.service-detail h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.service-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
}

.service-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* School-Based Section */
.school-based-section {
    padding: 80px 0;
}

.school-content {
    max-width: 1000px;
    margin: 0 auto;
}

.school-intro {
    text-align: center;
    margin-bottom: 50px;
}

.school-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.school-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.school-benefits,
.school-services,
.school-process,
.school-contact,
.school-important-info {
    margin-top: 50px;
}

.school-benefits h3,
.school-services h3,
.school-process h3,
.school-contact h3,
.school-important-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.consent-form-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.consent-form-iframe-container {
    width: 100%;
    min-height: 800px;
    position: relative;
}

.consent-form-iframe-container iframe {
    width: 100%;
    height: 800px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--white);
}

.consent-form-info {
    font-size: 14px;
    line-height: 1.7;
}

.sbohp-flyer h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 14px;
}

.process-steps {
    margin-top: 30px;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

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

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

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.school-contact {
    text-align: center;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

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

/* Privacy Section */
.privacy-section {
    padding: 80px 0;
}

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

.privacy-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.privacy-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.privacy-content strong {
    color: var(--text-dark);
}

.contact-details {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    /* Hide top-bar on mobile */
    .top-bar {
        display: none !important;
    }

    .header {
        top: 0 !important;
        z-index: 1000;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        z-index: 1002;
        overflow-y: auto;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        padding: 15px 0;
        width: 100%;
        display: block;
    }

    .nav-menu a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-menu a {
        padding: 12px 20px;
        padding-left: 40px;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1002;
        position: relative;
        padding: 8px 12px;
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 4px;
        color: var(--text-dark);
        font-size: 20px;
        cursor: pointer;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-toggle:hover {
        background: var(--bg-light);
    }

    .navbar {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .logo-section {
        flex: 1;
        min-width: 0;
    }

    .logo {
        height: 50px;
    }

    .brand-name {
        font-size: 18px;
    }

    .tagline {
        font-size: 12px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .hero-carousel {
        height: 400px;
    }

    .carousel-slide img,
    .carousel-video {
        width: 100%;
        height: 100%;
    }

    .slide-content {
        left: 60px;
        width: calc(100% - 120px);
        padding: 30px 20px;
        height: 100%;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 14px;
        line-height: 1.4;
    }

    .welcome-section {
        padding: 50px 0;
    }

    .welcome-content p {
        font-size: 16px;
    }

    .services-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-links {
        flex-direction: column;
        align-items: center;
    }

    .services-links .btn-secondary {
        width: 100%;
        max-width: 300px;
    }


    .page-header {
        padding: 50px 0;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .about-section,
    .services-detail-section,
    .school-based-section,
    .privacy-section {
        padding: 50px 0;
    }

    .about-text h2,
    .service-detail h2,
    .school-intro h2 {
        font-size: 28px;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-detail {
        padding: 30px 20px;
    }

    .step {
        flex-direction: column;
        gap: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .consent-form-iframe-container {
        min-height: 600px;
    }

    .consent-form-iframe-container iframe {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 50px;
    }

    .brand-name {
        font-size: 20px;
    }

    .tagline {
        font-size: 12px;
    }

    .hero-carousel {
        height: 350px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .about-text h2,
    .service-detail h2,
    .school-intro h2 {
        font-size: 24px;
    }

    .service-detail {
        padding: 20px 15px;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
    width: 100%;
}

.breadcrumb .container {
    padding: 0 20px;
}

.breadcrumb ol {
    list-style: none !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
}

.breadcrumb li {
    display: inline-flex !important;
    align-items: center;
    font-size: 14px;
    color: var(--text-light);
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    float: none !important;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    margin-right: 0;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 300;
    display: inline-block;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 500;
    display: inline-block;
}

.breadcrumb li:last-child span {
    color: var(--text-dark);
    font-weight: 600;
}

/* Responsive Breadcrumb */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 12px 0;
    }
    
    .breadcrumb ol {
        font-size: 13px;
        gap: 6px;
    }
    
    .breadcrumb li {
        font-size: 13px;
    }
    
    .breadcrumb li:not(:last-child)::after {
        margin-left: 6px;
        font-size: 16px;
    }
}
