/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #17a2b8;
    --accent-color: #ff9800;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --body-color: #ffffff;
    --text-color: #333333;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    background-color: var(--body-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #0042a6;
}

.btn {
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0042a6;
    border-color: #0042a6;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 16px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
    left: 15%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.hero-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    display: block;
    transition: var(--transition);
}

.hero-carousel .owl-dot.active span {
    background-color: white;
    width: 24px;
    border-radius: 10px;
}

/* About Preview Section */
.about-preview {
    position: relative;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background-color: var(--accent-color);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
}

/* Programs Section */
.program-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.program-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.program-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
}

.program-link i {
    transition: var(--transition);
    margin-left: 5px;
}

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

/* Events Section */
.event-card {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    min-width: 80px;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
}

.event-content {
    padding: 20px;
}

.event-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.events-carousel .owl-stage {
    padding: 20px 0;
}

.events-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white !important;
    height: 40px;
    width: 40px;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--dark-color) !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
}

.events-carousel .owl-nav button.owl-prev {
    left: -20px;
}

.events-carousel .owl-nav button.owl-next {
    right: -20px;
}

/* Testimonials Section */
.testimonial-card {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin: 20px 0;
}

.testimonial-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 4px solid var(--light-color);
}

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

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -15px;
    z-index: -1;
}

.testimonial-content h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.student-program {
    color: #666;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--light-color);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.counter {
    display: inline-block;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 30px 0 0 30px;
    padding-left: 20px;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 10px 25px;
}

/* Footer Styles */
.footer {
    background-color: #263238;
    color: #cfd8dc;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #cfd8dc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-right: 10px;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.legal-links li a {
    color: #90a4ae;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links li a:hover {
    color: white;
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Page Banner */
.page-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    color: white;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 38, 84, 0.8), rgba(0, 86, 179, 0.6));
}

.page-banner-content {
    position: relative;
    text-align: center;
}

.page-banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: inline-flex;
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* About Page Styles */
.story-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.story-image::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--accent-color);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
}

.mission-card, .vision-card, .value-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.mission-card:hover, .vision-card:hover, .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon, .value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.value-card {
    text-align: center;
}

.leadership-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.leadership-image {
    height: 250px;
    overflow: hidden;
}

.leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leadership-card:hover .leadership-image img {
    transform: scale(1.05);
}

.leadership-info {
    padding: 20px;
}

.leadership-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.leadership-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.accreditation-list {
    padding-left: 20px;
}

.accreditation-list li {
    margin-bottom: 10px;
}

/* Contact Page Styles */
.contact-info-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
}

.contact-form label {
    font-weight: 500;
}

.map-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.department-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.department-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(0, 86, 179, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 86, 179, 0.5);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-slide {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .hero-slide {
        height: 450px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-slide {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
    
    .legal-links {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .hero-slide {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-banner {
        padding: 80px 0;
    }
    
    .page-banner-content h1 {
        font-size: 2.2rem;
    }
}

/* 招生页面样式 */
.admission-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.admission-image-container::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.requirements-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.requirements-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.requirements-card h3 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.requirements-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.requirements-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

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

.process-timeline {
    position: relative;
    padding-left: 30px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.process-step {
    position: relative;
    margin-bottom: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-icon {
    position: absolute;
    left: -30px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.process-content {
    padding-left: 20px;
}

.process-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.aid-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.aid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.aid-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.aid-card h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.aid-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
}

.aid-link i {
    margin-left: 5px;
    transition: var(--transition);
}

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

.dates-table-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.table {
    margin-bottom: 0;
}

.table thead {
    background-color: var(--primary-color);
    color: white;
}

.virtual-tour-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.9;
    transition: var(--transition);
}

.play-button:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

/* 校园生活页面样式 */
.campus-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.accommodation-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7) !important;
    color: var(--dark-color) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.accommodation-carousel .owl-nav button:hover {
    background-color: white !important;
    color: var(--primary-color) !important;
}

.accommodation-carousel .owl-nav button.owl-prev {
    left: 10px;
}

.accommodation-carousel .owl-nav button.owl-next {
    right: 10px;
}

.accommodation-content h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

.facilities-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.facilities-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

.facility-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.facility-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.facility-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.dining-content h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.dining-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.highlight-item {
    background-color: rgba(0, 86, 179, 0.1);
    padding: 10px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

.dining-gallery img {
    transition: var(--transition);
}

.dining-gallery img:hover {
    transform: scale(1.03);
}

.dining-location-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.dining-location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.dining-location-card img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.dining-location-card .card-body {
    padding: 20px;
}

.dining-location-card h4 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.dining-location-card .location {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.dining-location-card .location i {
    margin-right: 5px;
}

.activities-content h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.activity-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 200px;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.activity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 15px;
    color: white;
}

.activity-overlay h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.activity-card:hover img {
    transform: scale(1.1);
}

.club-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.club-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.club-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.club-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.sports-content h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.sports-highlight-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.sports-highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sports-highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.sports-highlight-item h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.team-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.support-content h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.support-service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.support-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.support-service-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.culture-event {
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.culture-event:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.culture-event img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.culture-event .card-body {
    padding: 20px;
}

.culture-event h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.event-info {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.event-info i {
    margin-right: 5px;
}

.virtual-tour-cta {
    background-color: var(--primary-color);
    color: white;
}

.cta-card {
    padding: 50px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.95) 0%, rgba(0, 86, 179, 0.8) 100%);
} 