/* 基础样式 */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 顶部信息栏样式 */
.top-bar {
    background-color: #4285f4;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__contact a,
.top-bar__contact span {
    margin-right: 20px;
    color: #fff;
    text-decoration: none;
}

.top-bar__contact i {
    margin-right: 5px;
}

/* 主导航栏样式 */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.main-nav__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav__logo img {
    height: 50px;
}

.main-nav__menu {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav__item {
    position: relative;
    margin-left: 30px;
}

.main-nav__link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.main-nav__link:hover {
    color: #4A90E2;
}

.main-nav__link.active {
    color: #4A90E2;
}

.main-nav__link i {
    margin-left: 5px;
    font-size: 12px;
}

/* 轮播图样式 */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.9);
    border: none;
    color: #000;
    margin: 30px 0;
    padding: 20px;
}

.hero-buttons {
    margin-top: 40px;
}

.hero-buttons .btn {
    background: #ff9800;
    border: none;
    padding: 12px 24px;
    margin: 0 10px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

/* Swiper导航样式 */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #151B4A;
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav__item {
        margin: 0;
        width: 100%;
    }
    
    .main-nav__link {
        color: #fff;
        padding: 12px 20px;
        width: 100%;
    }
    
    .main-nav__link:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 300px;
    }
}

/* Features Section Styles */
.features {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.features-header {
    background-color: #151B4A;
    padding: 80px 0;
    margin-top: 80px;
    position: relative;
}

.features-header__content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-header__icon {
    font-size: 42px;
    position: absolute;
    opacity: 0.9;
}

.features-header__icon--book {
    left: 40px;
    color: #4285f4;
}

.features-header__icon--pencil {
    right: 40px;
    color: #ff9800;
}

.features-header__title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: #fff;
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    color: #fff;
    transition: all 0.3s ease;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-card--purple {
    background: linear-gradient(135deg, #8E44AD, #9B59B6);
}

.feature-card--blue {
    background: linear-gradient(135deg, #3498DB, #2980B9);
}

.feature-card--red {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
}

.feature-card__icon {
    font-size: 54px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.feature-card__icon i {
    font-weight: 300;
}

.feature-card__title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.feature-card__text {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
    padding: 0 15px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .features-grid {
        gap: 30px;
        padding: 0 30px;
    }
    
    .features-header__title {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .features-header__title {
        font-size: 34px;
        padding: 0 70px;
    }
    
    .features-header__icon {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .features-header {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: -80px;
    }
    
    .features-header__title {
        font-size: 28px;
        padding: 0 50px;
    }
    
    .feature-card {
        min-height: auto;
        padding: 40px 25px;
    }
    
    .features-header__icon {
        font-size: 32px;
    }
    
    .features-header__icon--book {
        left: 20px;
    }
    
    .features-header__icon--pencil {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .features-header__title {
        font-size: 24px;
        padding: 0 40px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card__title {
        font-size: 22px;
    }
    
    .feature-card__text {
        font-size: 15px;
    }
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #151B4A;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

/* Programs Section Styles */
.programs {
    padding: 80px 0;
    background: #fff;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.program-item:last-child {
    margin-bottom: 0;
}

.program-item--reverse {
    flex-direction: row-reverse;
}

.program-content {
    flex: 1;
    position: relative;
    padding: 40px 0;
}

.program-decorator {
    margin-bottom: 20px;
}

.program-decorator img {
    height: 20px;
    width: auto;
}

.program-title {
    font-size: 42px;
    font-weight: 700;
    color: #151B4A;
    margin-bottom: 30px;
    line-height: 1.2;
}

.program-title span {
    color: #3498DB;
}

.program-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
}

.program-btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    background: #ff9800;
    border: none;
    transition: all 0.3s ease;
}

.program-btn:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

.program-image {
    flex: 1;
    position: relative;
}

.program-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .program-item {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .program-item--reverse {
        flex-direction: column;
    }

    .program-content {
        text-align: center;
        padding: 20px 0;
    }

    .program-text {
        margin: 0 auto 40px;
    }

    .program-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .programs {
        padding: 60px 0;
    }

    .program-title {
        font-size: 32px;
    }

    .program-text {
        font-size: 15px;
    }

    .program-item {
        margin-bottom: 60px;
    }
}

/* Team Banner Styles */
.team-banner {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.team-banner__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.team-banner__text {
    max-width: 600px;
}

.team-banner__decorator {
    margin-bottom: 20px;
}

.team-banner__decorator img {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.team-banner__title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.team-banner__btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: #fff;
    color: #4A90E2;
    border: 2px solid transparent;
}

.team-banner__btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.team-banner__btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.team-banner__btn:hover i {
    transform: translateX(5px);
}

.team-banner__plane {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.team-banner__plane img {
    width: 120px;
    height: auto;
    opacity: 0.2;
}

@keyframes float {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-60%) translateX(20px);
    }
    100% {
        transform: translateY(-50%) translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .team-banner__title {
        font-size: 36px;
    }
    
    .team-banner__plane {
        right: 2%;
    }
    
    .team-banner__plane img {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .team-banner {
        padding: 60px 0;
    }
    
    .team-banner__content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .team-banner__title {
        font-size: 32px;
    }
    
    .team-banner__plane {
        display: none;
    }
}

/* Stats Section Styles */
.stats {
    padding: 80px 0;
    background: #fff;
}

.stats-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.stats-content {
    flex: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    color: #ff9800;
    font-size: 48px;
    margin-bottom: 20px;
}

.stat-number {
    color: #4A90E2;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.stats-image {
    flex: 1;
    position: relative;
}

.stats-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stats-banner {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    background: #ff4757;
    padding: 30px;
    border-radius: 0 0 20px 20px;
}

.stats-banner__title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .stats-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-icon {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-banner__title {
        font-size: 20px;
    }
}

/* Footer Styles */
.footer {
    background-color: #151B4A;
    padding: 80px 0 0;
    color: #fff;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer__logo {
    margin-bottom: 30px;
}

.footer__logo img {
    height: 60px;
    width: auto;
}

.footer__text {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer__social {
    display: flex;
    gap: 15px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: #fff;
    color: #151B4A;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer__contact-item:hover {
    color: #fff;
    text-decoration: none;
}

.footer__contact-item i {
    font-size: 20px;
    color: #4A90E2;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__link {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #fff;
    text-decoration: none;
}

.footer__copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    text-align: center;
}

.footer__copyright p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer__column:last-child {
        grid-column: span 2;
        text-align: center;
    }

    .footer__links {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__column:last-child {
        grid-column: auto;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__contact-item {
        justify-content: center;
    }
}

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.submenu {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu__item {
    padding: 0 20px;
}

.submenu__link {
    display: block;
    padding: 8px 0;
    color: #666;
    font-size: 15px;
    transition: all 0.3s ease;
}

.submenu__link:hover {
    color: #4A90E2;
    text-decoration: none;
    padding-left: 5px;
}

/* Mobile Submenu Styles */
@media (max-width: 768px) {
    .submenu {
        list-style: none;
        padding: 0;
        margin: 0;
        position: static;
        background: rgba(255,255,255,0.05);
        min-width: auto;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .has-submenu.active .submenu {
        display: block;
    }

    .submenu__item {
        padding: 0;
    }

    .submenu__link {
        padding: 10px 20px;
        color: #fff;
    }

    .submenu__link:hover {
        background: rgba(255,255,255,0.1);
        padding-left: 25px;
    }
} 

/* Page Header Styles */
.page-header {
    background-color: #151B4A;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* School Introduction Styles */
.school-intro {
    padding: 80px 0;
    background: #fff;
}

.section-content {
    padding: 30px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #151B4A;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.section-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-item i {
    color: #4285f4;
    font-size: 24px;
    margin-right: 15px;
}

.section-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* School Values Styles */
.school-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 32px;
    color: #fff;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #151B4A;
}

.value-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* School History Styles */
.school-history {
    padding: 80px 0;
    background: #fff;
}

.timeline {
    position: relative;
    padding: 30px 0;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
    padding-left: 30px;
}

/* .timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #4285f4;
} */

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #151B4A;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* School Vision Styles */
.school-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.vision-item {
    text-align: center;
    padding: 30px;
}

.vision-icon {
    width: 100px;
    height: 100px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.vision-icon i {
    font-size: 40px;
    color: #fff;
}

.vision-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #151B4A;
}

.vision-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.vision-cta {
    margin-top: 50px;
}

.vision-cta .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background: #4285f4;
    border: none;
    transition: all 0.3s ease;
}

.vision-cta .btn:hover {
    background: #2b6ad9;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .values-grid,
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        padding-left: 20px;
    }
    
    .timeline-year {
        font-size: 20px;
    }
    
    .vision-icon {
        width: 80px;
        height: 80px;
    }
    
    .vision-icon i {
        font-size: 32px;
    }
} 

/* Campus Overview Styles */
.campus-overview {
    padding: 80px 0;
    background: #fff;
}

.campus-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.campus-stats .stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.campus-stats .stat-item:hover {
    transform: translateY(-5px);
}

.campus-stats .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 10px;
}

.campus-stats .stat-label {
    font-size: 16px;
    color: #666;
}

/* Campus Facilities Styles */
.campus-facilities {
    padding: 80px 0;
    background: #f8f9fa;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.facility-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-image {
    height: 200px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-content {
    padding: 25px;
}

.facility-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 15px;
}

.facility-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.facility-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.facility-features li i {
    color: #4285f4;
    margin-right: 10px;
}

/* Student Life Styles */
.student-life {
    padding: 80px 0;
    background: #fff;
}

.life-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.life-feature {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.life-feature:hover {
    transform: translateY(-5px);
}

.life-icon {
    width: 80px;
    height: 80px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.life-icon i {
    font-size: 32px;
    color: #fff;
}

.life-feature h3 {
    font-size: 20px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 15px;
}

.life-feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Virtual Tour Styles */
.virtual-tour {
    padding: 80px 0;
    background: #f8f9fa;
}

.tour-content {
    max-width: 800px;
    margin: 0 auto;
}

.tour-video {
    margin: 40px 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.tour-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.tour-cta {
    margin-top: 30px;
}

.tour-cta .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .campus-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .life-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .facility-image {
        height: 180px;
    }
    
    .facility-content h3 {
        font-size: 20px;
    }
    
    .life-icon {
        width: 60px;
        height: 60px;
    }
    
    .life-icon i {
        font-size: 24px;
    }
} 

/* History Overview Styles */
.history-overview {
    padding: 80px 0;
    background: #fff;
}

.history-quote {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-left: 4px solid #4285f4;
    border-radius: 0 10px 10px 0;
}

.history-quote blockquote {
    font-size: 20px;
    font-style: italic;
    color: #151B4A;
    margin: 0;
}

.history-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #666;
}

/* History Timeline Styles */
.history-timeline {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #4285f4;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #4285f4;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #4285f4;
}

.timeline-content {
    position: relative;
    width: calc(50% - 40px);
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: calc(50% + 40px);
}

.timeline-year {
    display: inline-block;
    padding: 5px 15px;
    background: #4285f4;
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Legacy Section Styles */
.history-legacy {
    padding: 80px 0;
    background: #fff;
}

.legacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.legacy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.legacy-stats .stat-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.legacy-stats .stat-item:hover {
    transform: translateY(-5px);
}

.legacy-stats .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 10px;
}

.legacy-stats .stat-label {
    font-size: 16px;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        left: 0;
    }
    
    .timeline-image {
        height: 160px;
    }
    
    .legacy-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .history-quote {
        padding: 20px;
    }
    
    .history-quote blockquote {
        font-size: 18px;
    }
} 

/* Vision Overview Styles */
.vision-overview {
    padding: 80px 0;
    background: #fff;
}

.vision-highlights {
    margin-top: 40px;
}

.highlight-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 32px;
    color: #4285f4;
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Core Values Styles */
.core-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 32px;
    color: #fff;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Strategic Goals Styles */
.strategic-goals {
    padding: 80px 0;
    background: #fff;
}

.goals-content {
    max-width: 800px;
    margin: 50px auto 0;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.goal-item:hover {
    transform: translateX(10px);
}

.goal-item:last-child {
    margin-bottom: 0;
}

.goal-number {
    font-size: 48px;
    font-weight: 700;
    color: #4285f4;
    opacity: 0.3;
    margin-right: 30px;
    line-height: 1;
}

.goal-text {
    flex: 1;
}

.goal-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 10px;
}

.goal-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Vision CTA Styles */
.vision-cta {
    padding: 80px 0;
    background: #151B4A;
    color: #fff;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 160px;
}

.btn-outline-primary {
    color: #fff;
    border-color: #fff;
}

.btn-outline-primary:hover {
    background: #fff;
    color: #151B4A;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .goal-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .goal-number {
        margin: 0 0 15px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
} 

/* Teaching Philosophy Styles */
.teaching-philosophy {
    padding: 80px 0;
    background: #fff;
}

.philosophy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.philosophy-stats .stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.philosophy-stats .stat-item:hover {
    transform: translateY(-5px);
}

.philosophy-stats .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 10px;
}

.philosophy-stats .stat-label {
    font-size: 16px;
    color: #666;
}

/* Teaching Methods Styles */
.teaching-methods {
    padding: 80px 0;
    background: #f8f9fa;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.method-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.method-icon i {
    font-size: 32px;
    color: #fff;
}

.method-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 15px;
}

.method-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.method-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.method-features li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.method-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #4285f4;
    border-radius: 50%;
}

/* Learning Experience Styles */
.learning-experience {
    padding: 80px 0;
    background: #fff;
}

.experience-features {
    display: grid;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: #fff;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.experience-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Styles */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

/* Learning Resources Styles */
.learning-resources {
    padding: 80px 0;
    background: #151B4A;
    color: #fff;
}

.resources-content {
    max-width: 600px;
    margin: 0 auto;
}

.resources-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.resources-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.resources-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.resources-buttons .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 160px;
}

.resources-buttons .btn-outline-primary {
    color: #fff;
    border-color: #fff;
}

.resources-buttons .btn-outline-primary:hover {
    background: #fff;
    color: #151B4A;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .philosophy-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-features {
        margin-bottom: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-buttons {
        flex-direction: column;
    }
    
    .resources-buttons .btn {
        width: 100%;
    }
    
    .method-icon {
        margin: 0 auto 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .resources-content h2 {
        font-size: 28px;
    }
    
    .resources-content p {
        font-size: 16px;
    }
}

/* Program Overview Styles */
.program-overview {
    padding: 80px 0;
    background: #fff;
}

.program-highlights {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 24px;
    color: #fff;
}

.highlight-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 5px;
}

.highlight-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Program Structure Styles */
.program-structure {
    padding: 80px 0;
    background: #f8f9fa;
}

.year-tabs {
    margin-top: 50px;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 30px;
}

.nav-tabs .nav-item {
    margin: 0 10px;
}

.nav-tabs .nav-link {
    border: none;
    background: none;
    color: #666;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #4285f4;
}

.nav-tabs .nav-link.active {
    background: #4285f4;
    color: #fff;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.course-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 20px;
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.course-list li:last-child {
    margin-bottom: 0;
}

.course-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #4285f4;
    border-radius: 50%;
}

/* Career Prospects Styles */
.career-prospects {
    padding: 80px 0;
    background: #fff;
}

.prospects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.prospect-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.prospect-card:hover {
    transform: translateY(-5px);
}

.prospect-icon {
    width: 80px;
    height: 80px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.prospect-icon i {
    font-size: 32px;
    color: #fff;
}

.prospect-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 15px;
}

.prospect-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Admission Requirements Styles */
.admission-requirements {
    padding: 80px 0;
    background: #f8f9fa;
}

.requirements-content {
    margin-top: 50px;
}

.requirements-list h3 {
    font-size: 22px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 20px;
}

.requirements-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.requirements-list ul:last-child {
    margin-bottom: 0;
}

.requirements-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.requirements-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #4285f4;
    border-radius: 50%;
}

.process-steps {
    display: grid;
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #4285f4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Apply Now Styles */
.apply-now {
    padding: 80px 0;
    background: #151B4A;
    color: #fff;
}

.apply-content {
    max-width: 600px;
    margin: 0 auto;
}

.apply-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.apply-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.apply-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.apply-buttons .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 160px;
}

.apply-buttons .btn-outline-primary {
    color: #fff;
    border-color: #fff;
}

.apply-buttons .btn-outline-primary:hover {
    background: #fff;
    color: #151B4A;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .program-highlights {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .prospects-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin: 0 auto;
    }
    
    .nav-tabs .nav-item {
        margin: 0 5px;
    }
    
    .nav-tabs .nav-link {
        padding: 8px 20px;
        font-size: 16px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .apply-buttons {
        flex-direction: column;
    }
    
    .apply-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .apply-content h2 {
        font-size: 28px;
    }
    
    .apply-content p {
        font-size: 16px;
    }
}

/* Specializations Styles */
.specializations {
    padding: 80px 0;
    background: #f8f9fa;
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.specialization-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.specialization-card:hover {
    transform: translateY(-5px);
}

.specialization-icon {
    width: 80px;
    height: 80px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.specialization-icon i {
    font-size: 32px;
    color: #fff;
}

.specialization-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 15px;
}

.specialization-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.specialization-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialization-features li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.specialization-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #4285f4;
    border-radius: 50%;
}

/* Program Benefits Styles */
.program-benefits {
    padding: 80px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 32px;
    color: #fff;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .specializations-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .specialization-card,
    .benefit-card {
        text-align: center;
    }
    
    .specialization-icon,
    .benefit-icon {
        margin: 0 auto 20px;
    }
    
    .specialization-features {
        display: inline-block;
        text-align: left;
    }
}

/* Available Programs Styles */
.available-programs {
    padding: 80px 0;
    background: #f8f9fa;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-icon i {
    font-size: 32px;
    color: #fff;
}

.program-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 15px;
}

.program-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.program-features li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.program-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #4285f4;
    border-radius: 50%;
}

/* Upcoming Sessions Styles */
.upcoming-sessions {
    padding: 80px 0;
    background: #fff;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.session-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.session-card:hover {
    transform: translateY(-5px);
}

.session-date {
    background: #4285f4;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.session-date .month {
    font-size: 14px;
    font-weight: 600;
    display: block;
    text-transform: uppercase;
}

.session-date .day {
    font-size: 24px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.session-content {
    flex: 1;
}

.session-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 10px;
}

.session-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.session-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.session-details span {
    font-size: 14px;
    color: #666;
}

.session-details i {
    margin-right: 5px;
    color: #4285f4;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .sessions-grid {
        grid-template-columns: 1fr;
    }
    
    .session-card {
        flex-direction: column;
        text-align: center;
    }
    
    .session-date {
        margin: 0 auto;
    }
    
    .session-details {
        justify-content: center;
    }
    
    .program-icon {
        margin: 0 auto 20px;
    }
    
    .program-features {
        display: inline-block;
        text-align: left;
    }
}

/* News Categories Styles */
.news-categories {
    padding: 40px 0;
    background: #fff;
}

.category-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 20px;
}

.category-tab a {
    display: inline-block;
    padding: 8px 20px;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-tab.active a,
.category-tab a:hover {
    background: #4285f4;
    color: #fff;
}

/* Featured News Styles */
.featured-news {
    padding: 40px 0;
    background: #f8f9fa;
}

.featured-news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #4285f4;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.news-meta i {
    margin-right: 5px;
    color: #4285f4;
}

.news-title {
    font-size: 24px;
    font-weight: 600;
    color: #151B4A;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-card--large .news-image {
    height: 400px;
}

.news-card--medium .news-image {
    height: 200px;
}

.featured-news-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* News List Styles */
.news-list {
    padding: 60px 0;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-grid .news-card .news-image {
    height: 220px;
}

.news-grid .news-title {
    font-size: 20px;
}

/* Newsletter Styles */
.newsletter {
    padding: 80px 0;
    background: #151B4A;
    color: #fff;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 25px 0 0 25px;
    border: none;
    padding: 0 25px;
}

.newsletter-form .btn {
    padding: 0 30px;
    border-radius: 0 25px 25px 0;
    height: 50px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    gap: 10px;
}

.page-item .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #666;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-item.active .page-link,
.page-item .page-link:hover {
    background: #4285f4;
    color: #fff;
}

.page-item.disabled .page-link {
    background: #f8f9fa;
    color: #999;
    cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .featured-news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card--large .news-image {
        height: 300px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .category-tabs {
        gap: 10px;
    }
    
    .category-tab a {
        padding: 6px 15px;
        font-size: 14px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card--large .news-image {
        height: 250px;
    }
    
    .news-card--medium .news-image {
        height: 180px;
    }
    
    .newsletter-content h2 {
        font-size: 26px;
    }
    
    .newsletter-content p {
        font-size: 16px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 25px;
        margin-bottom: 15px;
    }
    
    .newsletter-form .btn {
        border-radius: 25px;
        width: 100%;
    }
}

/* News Detail Styles */
.news-detail {
    padding: 60px 0;
}

.news-detail__header {
    margin-bottom: 30px;
}

.news-detail__header .news-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    margin-bottom: 15px;
}

.news-detail__header .news-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.news-detail__header .news-meta {
    color: #666;
    font-size: 0.9rem;
}

.news-detail__header .news-meta span {
    margin-right: 20px;
}

.news-detail__header .news-meta i {
    margin-right: 5px;
}

.news-detail__image {
    margin-bottom: 30px;
}

.news-detail__image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-detail__content {
    margin-bottom: 40px;
}

.news-detail__content .lead {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 30px;
}

.news-detail__content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 30px 0 20px;
    color: var(--dark-color);
}

.news-detail__content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.news-detail__content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.news-detail__content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.news-quote {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
}

.news-quote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 10px;
}

.news-quote cite {
    font-size: 0.9rem;
    color: #666;
}

/* Share Buttons */
.news-detail__share {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.news-detail__share h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.share-button:hover {
    opacity: 0.9;
    color: #fff;
    text-decoration: none;
}

.share-button i {
    margin-right: 8px;
}

.share-facebook {
    background-color: #3b5998;
}

.share-twitter {
    background-color: #1da1f2;
}

.share-linkedin {
    background-color: #0077b5;
}

/* Author Info */
.news-detail__author {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.author-info p {
    margin: 0;
    color: #666;
}

/* Related News */
.related-news {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.related-news .section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Comments Section */
.comments-section {
    padding: 60px 0;
}

.comments-section .section-title {
    margin-bottom: 40px;
}

.comments-list {
    margin-bottom: 40px;
}

.comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.comment--reply {
    margin-left: 50px;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header h4 {
    font-size: 1rem;
    margin: 0;
}

.comment-date {
    font-size: 0.9rem;
    color: #666;
}

.comment-content p {
    margin-bottom: 10px;
}

.btn-reply {
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 0;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-reply:hover {
    text-decoration: underline;
}

/* Comment Form */
.comment-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.comment-form h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.comment-form .form-group {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    color: #444;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-form input {
    border: none;
    padding: 15px;
}

.newsletter-form button {
    padding: 15px 30px;
    border: none;
    background-color: var(--dark-color);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .news-detail__header .news-title {
        font-size: 2rem;
    }

    .news-detail__content .lead {
        font-size: 1.1rem;
    }

    .news-detail__author {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .comment--reply {
        margin-left: 30px;
    }
}

@media (max-width: 576px) {
    .news-detail {
        padding: 40px 0;
    }

    .news-detail__header .news-title {
        font-size: 1.8rem;
    }

    .news-quote {
        padding: 20px;
    }

    .comment {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .comment--reply {
        margin-left: 20px;
    }

    .comment-header {
        flex-direction: column;
        gap: 5px;
    }
}