.event-indicator.active {
    background: var(--oxford-blue);
    transform: scale(1.25);
}

[data-theme="dark"] .events-highlight {
    background: #0a0a0a;
}

[data-theme="dark"] .event-card {
    background: #000;
}

[data-theme="dark"] .event-card.active {
    background: #ffffff;
    color: #000000;
}

[data-theme="dark"] .event-nav {
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .event-indicator {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .events-highlight {
        padding: 4rem 0;
    }

    .events-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .event-carousel-wrapper {
        margin-top: 2rem;
        padding: 0;
    }

    .event-carousel-wrapper .container {
        padding: 0 15px;
    }

    .creative-slider {
        padding: 0;
    }

    .creative-slider .swiper-wrapper {
        flex-direction: column;
    }

    .creative-slider .swiper-slide {
        width: 100% !important;
        margin-bottom: 1rem;
    }

    .event-card {
        width: 100% !important;
        min-height: 400px;
        padding: 2.5rem 2rem;
        border-radius: 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .event-card.active {
        width: 100% !important;
        border-radius: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .event-card h3 {
        font-size: 2rem;
    }

    .event-card p {
        font-size: 0.95rem;
    }

    .event-card .event-number {
        font-size: 5rem;
        top: 2rem;
        right: 2rem;
    }
}

@media (max-width: 480px) {
    .events-highlight {
        padding: 3rem 0;
    }

    .event-carousel-wrapper {
        margin-top: 1.5rem;
    }

    .event-card {
        padding: 2rem 1.5rem;
        min-height: 380px;
        border-radius: 20px;
    }
    
    .event-card.active {
        border-radius: 20px;
    }

    .event-card h3 {
        font-size: 1.6rem;
    }

    .event-card p {
        font-size: 0.9rem;
    }

    .event-card .event-number {
        font-size: 4rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .event-button {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}
/* Iraqi Pharmacy Academy Stylesheet */

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

:root {
    /* Dynamic colors from settings - fallback to defaults if not set */
    --oxford-blue: var(--primary-light-color, #f78db3);
    --oxford-light-blue: var(--primary-light-color, #f78db3);
    --oxford-gold: var(--primary-dark-color, #b51768);
    --oxford-cream: #f5f5f0;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Light mode (default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f0;
    --bg-tertiary: #fafafa;
    --text-primary: #333;
    --text-secondary: #666;
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --description-inactive: #9a9a9a;
    --description-active: #111111;
}

[data-theme="dark"] {
    /* Dark mode */
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #252525;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --border-color: #404040;
    --card-bg: #2d2d2d;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --description-inactive: #6f6f6f;
    --description-active: #fefefe;
}

/* Dark mode specific styles */
[data-theme="dark"] input[type="text"],
[data-theme="dark"] input[type="email"],
[data-theme="dark"] input[type="tel"],
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

[data-theme="dark"] input[type="text"]:focus,
[data-theme="dark"] input[type="email"]:focus,
[data-theme="dark"] input[type="tel"]:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    border-color: var(--oxford-gold);
    background-color: var(--bg-secondary);
}

[data-theme="dark"] .article-description {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-right-color: var(--oxford-gold);
}

[data-theme="dark"] .breadcrumbs {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

[data-theme="dark"] .breadcrumbs a {
    color: var(--text-primary);
}

[data-theme="dark"] .page-header {
    background-color: var(--bg-secondary);
}

[data-theme="dark"] .page-header h1,
[data-theme="dark"] .page-header p {
    color: var(--text-primary);
}

/* Dark mode - Change all blue titles to white */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--white) !important;
}

[data-theme="dark"] .content-section h2,
[data-theme="dark"] .feature-card h3,
[data-theme="dark"] .page-header-text h1,
[data-theme="dark"] .sidebar h2,
[data-theme="dark"] .categories-sidebar h2,
[data-theme="dark"] .category-item-header,
[data-theme="dark"] .subcategory-header h3,
[data-theme="dark"] .subcategory.active .subcategory-header,
[data-theme="dark"] .section-header h2,
[data-theme="dark"] .latest-post-content h3,
[data-theme="dark"] .contact-form h2,
[data-theme="dark"] .contact-info h2,
[data-theme="dark"] .article-header h1,
[data-theme="dark"] .article-content h2,
[data-theme="dark"] .article-content h3 {
    color: var(--white) !important;
}

[data-theme="dark"] .breadcrumbs a {
    color: var(--white) !important;
}

[data-theme="dark"] .latest-read-more,
[data-theme="dark"] .view-all-link,
[data-theme="dark"] .read-more-link {
    color: var(--white) !important;
}

[data-theme="dark"] .latest-read-more:hover,
[data-theme="dark"] .view-all-link:hover,
[data-theme="dark"] .read-more-link:hover {
    color: var(--oxford-gold) !important;
}

[data-theme="dark"] .post-title,
[data-theme="dark"] .post h2,
[data-theme="dark"] .post h3,
[data-theme="dark"] .post h4,
[data-theme="dark"] .post-content h2,
[data-theme="dark"] .post-content h3,
[data-theme="dark"] .video-hero-content h1,
[data-theme="dark"] .slide-content h2 {
    color: var(--white) !important;
}

[data-theme="dark"] .category-item-header:hover {
    color: var(--white) !important;
}

[data-theme="dark"] .subcategory-header:hover h3 {
    color: var(--oxford-gold) !important;
}

[data-theme="dark"] .nav-menu > .nav-item > a.active {
    background-color: var(--oxford-gold);
    color: var(--oxford-blue);
}

[data-theme="dark"] .subcategory-item.active a {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--oxford-gold);
    border-left-color: var(--oxford-gold);
}

[data-theme="dark"] .subcategory.active .subcategory-header {
    color: var(--oxford-gold) !important;
}

[data-theme="dark"] .category.active .category-header {
    background-color: var(--oxford-gold);
    color: var(--oxford-blue);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 80px; /* Account for fixed navbar */
}

.description-text {
    color: var(--description-inactive);
    transition: color 0.6s ease;
}

.description-text.description-visible {
    color: var(--white);
}

.slide-content .description-text,
.video-content .description-text {
    color: var(--white) !important;
}

#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    color: var(--text-primary);
}

.loader-logo {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.loader-spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid rgba(0, 0, 0, 0.08);
    border-top-color: var(--oxford-blue);
    border-right-color: var(--oxford-gold);
    animation: spin 1s linear infinite;
}

.loader-text {
    font-weight: 600;
    letter-spacing: 0.05em;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--oxford-gold);
    color: var(--oxford-blue);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.6s ease-out;
}

#back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    animation: bounce 0.6s ease-in-out;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top i {
    font-size: 1rem;
}

[data-theme="dark"] #back-to-top {
    background: var(--oxford-gold);
    color: var(--oxford-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    background-color: var(--oxford-blue);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
    animation: slideDown 0.5s ease-out;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    object-fit: cover;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
    background-color: transparent;
    animation: scaleIn 0.6s ease-out;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo h1 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Language Selector */
.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle-desktop {
    display: block;
}

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.3rem;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.theme-icon {
    display: block;
    transition: transform 0.3s ease;
}

[data-theme="dark"] .theme-icon {
    transform: rotate(180deg);
}

.theme-menu-item {
    width: 100%;
    padding: 0;
    display: none;
}

.theme-toggle-menu {
    display: block;
    width: 100%;
    padding: 1rem;
}

.theme-toggle-menu label {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.theme-toggle-btn-menu {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
    font-size: 0.9rem;
}

.theme-toggle-btn-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.theme-text {
    font-weight: 600;
}

/* Language Selector - Redesigned Custom Dropdown */
.language-selector-desktop {
    margin-left: 0;
    position: relative;
    display: block;
}

.language-dropdown {
    position: relative;
}

.language-dropdown-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 0.65rem 1rem 0.65rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    position: relative;
}

.language-dropdown-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: var(--oxford-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transform: translateY(-1px);
}

.language-dropdown-btn:focus {
    outline: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-color: var(--oxford-gold);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.language-icon {
    font-size: 1rem;
}

.language-text {
    flex: 1;
    text-align: left;
}

.language-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.language-dropdown:hover .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--oxford-blue);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

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

.language-dropdown-btn:focus + .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--oxford-gold);
}

.language-option.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--oxford-gold);
    font-weight: 700;
}

.language-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-option span {
    flex: 1;
}

.language-check {
    color: var(--oxford-gold);
    font-size: 0.875rem;
}

/* Language Selector in Menu (Mobile) */
.language-menu-item {
    width: 100%;
    padding: 0;
    display: none;
}

.language-selector-menu {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.language-selector-menu label {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-dropdown-menu-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.language-option-mobile {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    color: var(--white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.language-option-mobile::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--oxford-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.language-option-mobile:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--oxford-gold);
    color: var(--oxford-gold);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.language-option-mobile:hover::before {
    transform: scaleY(1);
}

.language-option-mobile.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--oxford-gold);
    color: var(--oxford-gold);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.language-option-mobile.active::before {
    transform: scaleY(1);
}

.language-option-mobile .language-flag {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.language-option-mobile.active .language-flag {
    border-color: var(--oxford-gold);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.language-option-mobile span {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
}

.language-option-mobile .language-check {
    color: var(--oxford-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.nav-item {
    position: relative;
}

.nav-menu > .nav-item > a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu > .nav-item > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--oxford-gold);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu > .nav-item > a:hover::after {
    width: 80%;
}

.nav-menu > .nav-item > a {
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 1rem 1.5rem;
    display: block;
    text-transform: uppercase;
}

.nav-menu > .nav-item > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.nav-menu > .nav-item > a.active {
    background-color: var(--oxford-gold);
    color: var(--oxford-blue);
    font-weight: 700;
}

.nav-menu > .nav-item > a.active::after {
    width: 80%;
    background-color: var(--oxford-blue);
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-bg);
    min-width: 220px;
    box-shadow: 0 4px 20px var(--shadow-color);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: var(--transition);
    font-size: 0.95rem;
    text-transform: none;
    font-weight: normal;
}

.dropdown-menu a:hover {
    background-color: var(--bg-secondary);
    color: var(--oxford-blue);
    padding-left: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Slideshow Section */
/* Modern Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    margin-top: -80px;
    background: #000;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 20s ease-out;
    will-change: transform;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
    animation: kenBurns 20s ease-in-out infinite;
}

@keyframes kenBurns {
    0%, 100% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.05) translate(-2%, -2%);
    }
}

/* Video Hero Styles */
.hero-slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-slide.active .hero-video-bg {
    animation: videoZoom 20s ease-in-out infinite;
}

@keyframes videoZoom {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(247, 141, 179, 0.15) 50%,
        rgba(181, 23, 104, 0.25) 100%);
    z-index: 1;
}

.hero-slide-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        transparent 0%, 
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.5) 100%);
}

.hero-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 2rem;
}

.hero-content-inner {
    max-width: 900px;
    width: 100%;
    text-align: center;
    color: #fff;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, 
                opacity 1.2s ease 0.3s;
}

.hero-slide.active .hero-content-inner {
    transform: translateY(0);
    opacity: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--oxford-gold);
    margin-bottom: 2rem;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s, 
                opacity 1s ease 0.5s;
}

.hero-slide.active .hero-badge {
    transform: translateY(0);
    opacity: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 
                 0 2px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s, 
                opacity 1.2s ease 0.7s;
}

.hero-slide.active .hero-title {
    transform: translateY(0);
    opacity: 1;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s, 
                opacity 1.2s ease 0.9s;
}

.hero-slide.active .hero-description {
    transform: translateY(0);
    opacity: 1;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, var(--oxford-gold) 0%, #d4a520 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
                0 5px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s, 
                opacity 1.2s ease 1.1s,
                all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.hero-slide.active .hero-button {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.hero-button:hover {
    background: linear-gradient(135deg, #d4a520 0%, var(--oxford-gold) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
                0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button i {
    transition: transform 0.3s ease;
}

.hero-button:hover i {
    transform: translateX(5px);
}

/* Navigation Buttons */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.hero-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.hero-nav-prev {
    left: 2rem;
}

.hero-nav-next {
    right: 2rem;
}

/* Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.hero-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--oxford-gold), #d4a520);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(181, 23, 104, 0.5);
}

/* Indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
}

.hero-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--oxford-gold);
    transition: width 0.4s ease, height 0.4s ease;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-indicator.active {
    background: var(--oxford-gold);
    border-color: var(--oxford-gold);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(181, 23, 104, 0.6);
}

.hero-indicator.active::before {
    width: 100%;
    height: 100%;
}

/* Video Background Section */
.video-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
}

.video-section .container {
    padding: 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 33, 71, 0.8) 0%, rgba(30, 60, 114, 0.7) 100%);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.video-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.video-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--oxford-gold);
    color: var(--oxford-blue);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Image Background Hero Section */
.image-hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.image-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 33, 71, 0.8) 0%, rgba(30, 60, 114, 0.7) 100%);
    z-index: 1;
}

.image-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.image-hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.2;
}

.image-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.video-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.video-hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.2;
}

.video-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Content Section */
/* Achievements Section */
.achievements-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(247, 141, 179, 0.05) 0%, rgba(181, 23, 104, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .achievements-section {
    background: linear-gradient(135deg, rgba(247, 141, 179, 0.1) 0%, rgba(181, 23, 104, 0.15) 100%);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-item {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
    opacity: 0;
}

.achievement-item.animate {
    opacity: 1;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--oxford-blue), var(--oxford-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.achievement-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--oxford-gold);
}

.achievement-item:hover::before {
    transform: scaleX(1);
}

.achievement-icon {
    font-size: 3.5rem;
    color: var(--oxford-blue);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.achievement-item:hover .achievement-icon {
    color: var(--oxford-gold);
    transform: scale(1.2) rotate(5deg);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--oxford-blue);
    margin-bottom: 1rem;
    line-height: 1;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.achievement-item:hover .achievement-number {
    color: var(--oxford-gold);
}

.achievement-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.achievement-item:hover .achievement-name {
    color: var(--oxford-blue);
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--bg-secondary);
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs .container {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumbs a {
    color: var(--oxford-blue);
    text-decoration: none;
}

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

.breadcrumbs span {
    margin: 0 0.5rem;
}

/* Page Header */
.page-header {
    background-color: var(--bg-secondary);
    padding: 4rem 0;
    text-align: left;
    animation: fadeIn 0.6s ease-out;
}

.page-header-text h1 {
    animation: slideInLeft 0.8s ease-out 0.2s both;
    opacity: 0;
}

.page-header-text h1.animate {
    opacity: 1;
}

.page-header-text p {
    animation: slideInLeft 0.8s ease-out 0.4s both;
    opacity: 0;
}

.page-header-text p.animate {
    opacity: 1;
}

.page-header .container {
    max-width: 1200px;
}

.page-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.page-header-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--shadow);
}

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

.page-header-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--oxford-blue);
}

.page-header-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.events-highlight {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

[data-theme="dark"] .events-highlight {
    background: #0a0a0a;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.events-header .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--oxford-gold);
    margin-bottom: 0.4rem;
}

.events-header h2 {
    font-size: 2.2rem;
}

.events-header p {
    max-width: 500px;
    color: var(--text-secondary);
}

.event-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    padding: 0;
    width: 100%;
}

.event-carousel-wrapper .container {
    max-width: 100%;
    padding: 0;
}

.creative-slider {
    overflow: hidden;
    padding: 0;
}

.creative-slider .swiper-wrapper {
    align-items: stretch;
}

.creative-slider .swiper-slide {
    width: auto;
    height: auto;
    display: flex;
    align-items: stretch;
    position: relative;
}

.creative-slider .swiper-slide:not(.swiper-slide-active) {
    filter: brightness(1);
}

.event-card {
    width: 250px;
    min-height: 450px;
    background: #000;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #ffffff;
    opacity: 1;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.6s ease,
                color 0.6s ease,
                box-shadow 0.6s ease;
    box-shadow: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.event-card:hover {
    opacity: 0.9;
}

.event-card > * {
    position: relative;
    z-index: 1;
}

.event-card .event-number {
    position: absolute;
    top: 2.5rem;
    right: 3rem;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: -0.02em;
    z-index: 0;
    pointer-events: none;
}

.event-card h3 {
    font-size: 3rem;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.02em;
    margin-top: 1rem;
    text-transform: uppercase;
}

.event-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 0.5rem;
}

.event-button {
    margin-top: auto;
    align-self: flex-start;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease;
    overflow: hidden;
    z-index: 2;
}

.event-button .button-hover-circle {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.event-button:hover .button-hover-circle {
    width: 200px;
    height: 200px;
}

.event-button span:not(.button-hover-circle) {
    position: relative;
    z-index: 1;
}

.event-card.active {
    background: #ffffff;
    color: #000000;
    opacity: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.event-card.active h3 {
    color: #000000 !important;
}

.event-card.active p {
    color: #000000 !important;
}

.event-card.active .event-meta {
    color: #000000 !important;
}

.event-card.active .event-button {
    color: #000000 !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .event-card.active {
    background: #ffffff;
    color: #000000;
}

[data-theme="dark"] .event-card.active h3 {
    color: #000000 !important;
}

[data-theme="dark"] .event-card.active p {
    color: #000000 !important;
}

[data-theme="dark"] .event-card.active .event-meta {
    color: #000000 !important;
}

[data-theme="dark"] .event-card.active .event-button {
    color: #000000 !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
}

.event-card.active::before {
    opacity: 0;
}

.event-card.active .event-number {
    color: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .event-card.active .event-number {
    color: rgba(0, 0, 0, 0.05);
}

.event-card.active .event-button .button-hover-circle {
    background: rgba(0, 0, 0, 0.05);
}

/* Navigation and indicators removed for cleaner design */
.event-nav,
.event-indicators {
    display: none;
}

[data-theme="dark"] .events-highlight {
    background: #0a0a0a;
}

[data-theme="dark"] .event-card {
    background: #000;
}

[data-theme="dark"] .event-card.active {
    background: #ffffff;
    color: #000000;
}

[data-theme="dark"] .event-nav {
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .event-indicator {
    background: rgba(255, 255, 255, 0.25);
}


/* Main Content Section with Sidebar */
.main-content-section {
    padding: 3rem 0;
    background-color: var(--card-bg);
}

.content-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar */
.sidebar {
    background-color: var(--card-bg);
}

.sidebar h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--oxford-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-categories {
    list-style: none;
}

.sidebar-category {
    margin-bottom: 0.5rem;
}

.sidebar-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    cursor: pointer;
    color: var(--oxford-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-category-header:hover {
    color: var(--oxford-light-blue);
}

.sidebar-category-header.active {
    color: var(--oxford-gold);
}

.sidebar-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.sidebar-category-header.active .sidebar-arrow {
    transform: rotate(180deg);
    color: var(--oxford-gold);
}

.sidebar-subcategories {
    list-style: none;
    padding: 0.5rem 0 0.5rem 1rem;
    display: none;
}

.sidebar-subcategories li {
    margin-bottom: 0.5rem;
}

.sidebar-subcategories a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition);
    border-left: 2px solid transparent;
    padding-left: 1rem;
}

.sidebar-subcategories a:hover {
    color: var(--oxford-blue);
    border-left-color: var(--oxford-blue);
    padding-left: 1.25rem;
}

/* Main Content Area */
.main-content {
    min-height: 400px;
}

.welcome-message {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 3rem 0;
}

.posts-grid {
    width: 100%;
}

.posts-grid .post {
    width: 100%;
    max-width: 100%;
}

.post-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.post-group .post {
    width: 100%;
    max-width: 100%;
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
    background-color: var(--card-bg);
}

.categories-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Categories Sidebar */
.categories-sidebar {
    background-color: var(--card-bg);
    border-right: 1px solid #e0e0e0;
    padding-right: 2rem;
}

.categories-sidebar h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--oxford-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-list {
    list-style: none;
}

.category-item {
    margin-bottom: 0.5rem;
}

.category-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    cursor: pointer;
    color: var(--oxford-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border-bottom: 1px solid #e0e0e0;
}

.category-item-header:hover {
    color: var(--oxford-light-blue);
}

.category-item.active .category-item-header {
    color: var(--oxford-gold);
}

.list-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.category-item.active .list-arrow {
    transform: rotate(180deg);
    color: var(--oxford-gold);
}

.subcategory-list {
    list-style: none;
    padding: 0.5rem 0 0.5rem 1rem;
    display: none;
    margin: 0;
}

.category-item.active .subcategory-list {
    display: block;
}

.subcategory-item {
    margin-bottom: 0.25rem;
}

.subcategory-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem 0.75rem;
    transition: var(--transition);
    border-left: 2px solid transparent;
    border-radius: 4px;
}

.subcategory-item a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--oxford-gold);
    border-left-color: var(--oxford-gold);
}

.subcategory-item.active a {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--oxford-gold);
    border-left-color: var(--oxford-gold);
    font-weight: 600;
}

/* Posts Main Content */
.posts-main-content {
    min-height: 400px;
}

.category {
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow);
}

.category-header {
    background-color: var(--oxford-blue);
    color: var(--white);
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.category-header:hover {
    background-color: var(--oxford-light-blue);
}

.category-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.category-header.active .toggle-icon {
    transform: rotate(0deg);
}

.category.active .category-header {
    background-color: var(--oxford-gold);
    color: var(--oxford-blue);
}

.category.active .category-header .toggle-icon {
    content: '−';
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 2rem;
}

.category-content.active {
    max-height: 5000px;
    padding: 2rem;
    background-color: var(--card-bg);
}

.subcategory {
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--oxford-gold);
    padding-left: 1.5rem;
}

.subcategory-header {
    cursor: pointer;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.subcategory-header:hover h3 {
    color: var(--oxford-gold);
}

.subcategory-header h3 {
    font-size: 1.4rem;
    color: var(--oxford-light-blue);
    margin: 0;
    transition: var(--transition);
}

.subcategory-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0;
}

.subcategory-content.active {
    max-height: 5000px;
    padding: 1.5rem 0;
}

.subcategory.active .subcategory-header {
    color: var(--oxford-gold);
    font-weight: 600;
}

.subcategory.active .subcategory-header .toggle-icon {
    content: '−';
}

.posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.posts.list-view {
    grid-template-columns: 1fr;
}

.post {
    background-color: var(--card-bg);
    padding: 0;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out both;
    opacity: 0;
}

.post.animate {
    opacity: 1;
}

.post {
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    position: relative;
    cursor: pointer;
}

.post:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px) scale(1.02);
}

.post-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--oxford-blue) 0%, var(--oxford-light-blue) 100%);
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.post:hover .post-image {
    transform: scale(1.15);
}

.post-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
}

.post-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none;
}

.post:hover .post-title-overlay {
    opacity: 1;
}

.post-title-overlay h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.post:hover .post-title-overlay h4 {
    transform: translateY(0);
}

.post-content {
    padding: 0;
    display: none;
}

.post-content h4 {
    display: none;
}

.post-content .read-more-link {
    display: none;
}

.post-content .post-date {
    display: none;
}

.post-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post h4 {
    color: var(--oxford-blue);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
}

.post p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
    flex-grow: 1;
}

.read-more-link {
    display: inline-block;
    color: var(--oxford-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.read-more-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--oxford-gold);
    transition: width 0.3s ease;
}

.read-more-link:hover {
    color: var(--oxford-gold);
    transform: translateX(5px);
}

.read-more-link:hover::after {
    width: 100%;
}

/* Latest Sections */
.latest-section {
    padding: 5rem 0;
    background-color: var(--card-bg);
}

.latest-section:nth-child(even) {
    background-color: var(--bg-secondary);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInUp 0.8s ease-out both;
    opacity: 0;
}

.section-header.animate {
    opacity: 1;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--oxford-blue);
    font-weight: 700;
    margin: 0;
}

.view-all-link {
    color: var(--oxford-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-link:hover {
    color: var(--oxford-gold);
    transform: translateX(5px);
}

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

.latest-post-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.latest-post-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.latest-post-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.latest-post-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.latest-post-content h3 {
    color: var(--oxford-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.latest-post-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.latest-read-more {
    display: inline-block;
    color: var(--oxford-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    align-self: flex-start;
}

.latest-read-more:hover {
    color: var(--oxford-gold);
    border-bottom-color: var(--oxford-gold);
    transform: translateX(5px);
}

/* Video Hero Section */
.video-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-hero-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 33, 71, 0.75) 0%, rgba(30, 60, 114, 0.65) 100%);
    z-index: 2;
}

.video-hero-content {
    top: 160px;
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.video-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.video-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

.video-hero-button {
    display: inline-block;
    background-color: var(--oxford-gold);
    color: var(--oxford-blue);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.4s ease-out;
}

.video-hero-button:hover {
    background-color: #b8941f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--oxford-cream) 0%, var(--white) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background-color: var(--oxford-blue);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--oxford-gold);
}

.contact-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.contact-info .info-item strong {
    min-width: 100px;
    color: var(--oxford-gold);
    margin-bottom: 0.5rem;
}

.contact-info .info-item:has(.social-media) {
    flex-direction: column;
}

.contact-info .info-item:has(.social-media) strong {
    min-width: auto;
    margin-bottom: 0.75rem;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--oxford-blue);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--oxford-blue);
    box-shadow: 0 0 0 3px rgba(0, 33, 71, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--oxford-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--oxford-light-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

/* Read More Page */
.read-more-section {
    padding: 4rem 0;
    background-color: var(--card-bg);
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--shadow);
}

.article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--oxford-gold);
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--oxford-blue);
    margin-bottom: 1rem;
}

.article-meta {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.article-description {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 33, 71, 0.05) 0%, rgba(0, 33, 71, 0.02) 100%);
    border-left: 4px solid var(--oxford-gold);
    border-radius: 5px;
}

.article-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0;
}

.article-image-slider {
    margin: 2.5rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.image-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--oxford-blue);
}

.slider-image.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--oxford-blue);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav.prev-slide {
    left: 20px;
}

.slider-nav.next-slide {
    right: 20px;
}

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

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-indicator.active {
    background: var(--white);
    border-color: var(--oxford-gold);
    width: 30px;
    border-radius: 6px;
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-top: 2rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    color: var(--oxford-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.article-content h3 {
    color: var(--oxford-light-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--oxford-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.back-link:hover {
    background-color: var(--oxford-light-blue);
    transform: translateX(-5px);
}

/* Footer - Redesigned */
.footer {
    background: linear-gradient(135deg, var(--oxford-blue) 0%, #001a33 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--oxford-gold) 0%, rgba(212, 175, 55, 0.5) 50%, var(--oxford-gold) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out both;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-section h3 {
    color: var(--oxford-gold);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.75rem;
    text-align: left;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    width: 50px;
    height: 3px;
    background: var(--oxford-blue);
    border-radius: 2px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Align footer menu and pink line same as language selector */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.25rem;
    text-align: left;
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--oxford-gold);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover::before {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--oxford-gold);
    opacity: 1;
    transform: translateX(5px);
}

.footer-section a[href^="tel:"],
.footer-section a[href^="mailto:"] {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-section a[href^="tel:"]:hover,
.footer-section a[href^="mailto:"]:hover {
    color: var(--oxford-gold);
    opacity: 1;
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.85;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}

.footer-bottom a {
    color: var(--oxford-gold);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Dark Mode Footer */
[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #000814 0%, #001a33 100%);
}

[data-theme="dark"] .footer::before {
    background: linear-gradient(90deg, var(--oxford-gold) 0%, rgba(212, 175, 55, 0.3) 50%, var(--oxford-gold) 100%);
}

/* Social Media Icons */
.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background-color: var(--oxford-gold);
    border-color: var(--oxford-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.social-icon i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1);
}

/* Contact Page Social Media */
.contact-info .social-media {
    margin-top: 1.5rem;
}

.contact-info .info-item:last-of-type {
    margin-top: 2rem;
}

.contact-info .info-item:has(.social-media) strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--oxford-gold);
}

/* Dark Mode Social Media */
[data-theme="dark"] .social-icon {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .social-icon:hover {
    background-color: var(--oxford-gold);
    border-color: var(--oxford-gold);
}

/* Responsive Social Media */
@media (max-width: 768px) {
    .social-media {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon i {
        font-size: 16px;
    }
}

/* Tablet/iPad Responsive - 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Container Tablet */
    .container {
        padding: 0 20px;
    }

    /* Show hamburger on tablets */
    .hamburger {
        display: flex !important;
        flex: 0 0 auto;
        margin-left: auto;
    }

    /* Hide header controls on tablets */
    .header-controls {
        display: none !important;
    }

    .theme-toggle-desktop {
        display: none !important;
    }

    .language-selector-desktop {
        display: none !important;
    }

    /* Hide desktop nav menu on tablets */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--oxford-blue);
        width: 100%;
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 0;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        display: block;
    }

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

    /* Show mobile menu items (theme and language) inside menu */
    .theme-menu-item,
    .language-menu-item {
        display: block !important;
    }

    .theme-toggle-menu {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .language-selector-menu {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Achievements Grid Tablet */
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .achievements-section {
        padding: 4rem 0;
    }

    /* Latest Grid Tablet */
    .latest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .latest-section {
        padding: 4rem 0;
    }

    .post-group {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-card {
        width: 220px;
        padding: 2.5rem 2rem;
    }

    .event-card.active {
        min-width: 350px;
    }

    .event-card h3 {
        font-size: 2.2rem;
    }

    .event-card .event-number {
        font-size: 7rem;
    }

    .events-header h2 {
        font-size: 2rem;
    }

    .events-header p {
        font-size: 1rem;
    }

    .slideshow-section {
        height: 600px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1.05rem;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .logo-image {
        width: 52px;
        height: 52px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer {
        padding: 3rem 0 1.25rem;
    }

    .footer-section h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .contact-container {
        gap: 2rem;
    }

    .image-slider-container {
        height: 450px;
    }
}

/* Responsive Design - Tablets and Mobile */
@media (max-width: 1024px) {
    /* Show hamburger on tablets and mobile */
    .hamburger {
        display: flex !important;
        flex: 0 0 auto;
        margin-left: auto;
    }

    /* Hide header controls on tablets and mobile */
    .header-controls {
        display: none !important;
    }

    .theme-toggle-desktop {
        display: none !important;
    }

    .language-selector-desktop {
        display: none !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Smaller navbar on mobile */
    }

    .slideshow-section {
        margin-top: -70px; /* Offset for mobile navbar */
    }

    /* Navbar Mobile */
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo Mobile */
    .logo {
        flex: 0 0 auto;
        gap: 0.75rem;
    }

    .logo-image {
        width: 48px;
        height: 48px;
    }

    .logo h1 {
        font-size: 0.95rem;
    }

    /* Hide desktop nav menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--oxford-blue) 0%, #001a33 100%);
        width: 100%;
        text-align: left;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        padding: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        display: block;
    }

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

    /* Custom scrollbar for mobile menu */
    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--oxford-gold);
        border-radius: 3px;
    }

    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(212, 175, 55, 0.8);
    }

    /* Header Controls Mobile - Hide completely, show only hamburger */
    .header-controls {
        display: none !important;
    }

    .theme-toggle-desktop {
        display: none !important;
    }

    .language-selector-desktop {
        display: none !important;
    }

    /* Hamburger Menu - Only visible element on right */
    .hamburger {
        display: flex !important;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
        background-color: var(--white);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile Menu Items */
    .nav-item {
        width: 100%;
        margin: 0;
    }

    .nav-menu > .nav-item > a {
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        width: 100%;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-menu > .nav-item > a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--oxford-gold);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .nav-menu > .nav-item > a:hover {
        background: rgba(255, 255, 255, 0.08);
        padding-left: 2rem;
    }

    .nav-menu > .nav-item > a:hover::before {
        transform: scaleY(1);
    }

    .nav-menu > .nav-item > a.active {
        background: rgba(212, 175, 55, 0.15);
        color: var(--oxford-gold);
    }

    .nav-menu > .nav-item > a.active::before {
        transform: scaleY(1);
    }

    /* Show mobile menu items (theme and language) inside menu */
    .theme-menu-item,
    .language-menu-item {
        display: block !important;
    }

    .theme-toggle-menu {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .language-selector-menu {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.2);
        display: none;
        padding: 0;
    }

    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: var(--white);
        padding: 0.75rem 3rem;
    }

    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        padding-left: 3.5rem;
    }

    .slideshow-section {
        height: 500px;
    }

    .slide-content {
        padding: 2.5rem 2rem;
    }

    .slide-content {
        padding: 3rem 2rem;
        width: 95%;
    }

    .slide-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1.5px;
    }

    .slide-content h2::after {
        width: 80px;
        height: 3px;
    }

    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .slide-link {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .slideshow-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .slideshow-nav.prev {
        left: 1rem;
    }

    .slideshow-nav.next {
        right: 1rem;
    }

    .slideshow-indicators {
        bottom: 20px;
        padding: 0.5rem 1rem;
        gap: 8px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 30px;
        height: 8px;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-bottom: 2rem;
    }

    .page-header-content {
        grid-template-columns: 1fr;
    }

    .page-header-image {
        height: 300px;
    }

    .events-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-card {
        min-height: auto;
        flex: 1 1 100%;
        width: 100%;
        padding: 1.75rem;
    }

    .event-card h3 {
        font-size: 1.25rem;
    }

    .event-card p {
        font-size: 0.95rem;
    }

    .event-card .event-number {
        font-size: 1.8rem;
    }

    .event-nav {
        display: none;
    }
    
    /* Hero Slider Responsive */
    .hero-slider {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-button {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }
    
    .hero-nav {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .hero-nav-prev {
        left: 1rem;
    }
    
    .hero-nav-next {
        right: 1rem;
    }
    
    .hero-indicators {
        bottom: 1.5rem;
        padding: 0.75rem 1.25rem;
        gap: 0.75rem;
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
    }

    .event-indicators {
        display: none;
    }

    .categories-layout {
        grid-template-columns: 1fr;
    }

    .categories-sidebar {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-right: 0;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .post-group {
        grid-template-columns: 1fr;
    }

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

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

    .video-hero-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Achievements Section Mobile */
    .achievements-section {
        padding: 4rem 0;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .achievement-item {
        padding: 2.5rem 1.5rem;
    }

    .achievement-icon {
        font-size: 3rem;
    }

    .achievement-number {
        font-size: 3rem;
    }

    .achievement-name {
        font-size: 1.1rem;
    }

    /* Latest Section Mobile */
    .latest-section {
        padding: 3rem 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .view-all-link {
        font-size: 0.95rem;
    }

    .latest-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .latest-post-content {
        padding: 1.5rem;
    }

    .latest-post-content h3 {
        font-size: 1.2rem;
    }

    .latest-post-content p {
        font-size: 0.95rem;
    }

    .latest-post-image {
        height: 200px;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .language-selector-desktop {
        display: none;
    }

    .language-menu-item {
        display: block !important;
    }
    
    .language-selector-menu {
        display: block;
    }

    .video-content h2 {
        font-size: 2.5rem;
    }

    .video-content p {
        font-size: 1.1rem;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
        max-height: 700px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .hero-nav.prev {
        left: 10px;
    }

    .hero-nav.next {
        right: 10px;
    }

    .hero-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .hero-indicator {
        width: 10px;
        height: 10px;
    }

    /* Image Hero Section Responsive */
    .image-hero-section {
        height: 70vh;
        min-height: 500px;
        max-height: 700px;
        margin: 0;
    }

    .image-hero-content {
        padding: 1.5rem;
    }

    .image-hero-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .image-hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Video Section Responsive */
    .video-section {
        height: 70vh;
        min-height: 500px;
        max-height: 700px;
        margin: 0;
    }

    .video-hero-content {
        padding: 1.5rem;
    }

    .video-hero-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .video-hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    /* Container Mobile */
    .container {
        padding: 0 15px;
    }

    /* Achievements Grid Mobile */
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .achievements-section {
        padding: 4rem 0;
    }
    
    .achievement-item {
        padding: 2.5rem 1.5rem;
    }
    
    .achievement-icon {
        font-size: 3rem;
    }
    
    .achievement-number {
        font-size: 3rem;
    }
    
    .achievement-name {
        font-size: 1.1rem;
    }

    /* Latest Section Mobile */
    .latest-section {
        padding: 3rem 0;
    }

    .latest-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .latest-post-card {
        margin-bottom: 0;
    }

    .latest-post-content {
        padding: 1.5rem;
    }

    .latest-post-content h3 {
        font-size: 1.2rem;
    }

    .latest-post-content p {
        font-size: 0.95rem;
    }
    
    /* Hero Slider Mobile */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-nav {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .hero-nav-prev {
        left: 0.75rem;
    }
    
    .hero-nav-next {
        right: 0.75rem;
    }
    
    .hero-indicators {
        bottom: 1rem;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
    
    .hero-indicator {
        width: 8px;
        height: 8px;
    }

    /* Image Hero Section Mobile */
    .image-hero-section {
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
        margin: 0;
        border-radius: 0;
    }

    .image-hero-content {
        padding: 1.5rem 1rem;
    }

    .image-hero-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .image-hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Video Section Mobile */
    .video-section {
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
        margin: 0;
        border-radius: 0;
    }

    .video-hero-content {
        padding: 1.5rem 1rem;
    }

    .video-hero-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .video-hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .article-container {
        padding: 2rem 1.5rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-image-slider {
        margin: 2rem 0;
    }
    
    .image-slider-container {
        height: 400px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-nav.prev-slide {
        left: 10px;
    }
    
    .slider-nav.next-slide {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 15px;
    }

    .logo h1 {
        font-size: 0.95rem;
    }

    .logo-image {
        width: 48px;
        height: 48px;
    }

    .header-controls {
        gap: 0.75rem;
    }

    .theme-toggle-btn {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .language-dropdown-btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        min-width: 100px;
    }

    .language-dropdown-menu {
        min-width: 160px;
    }

    #back-to-top {
        width: 42px;
        height: 42px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li {
        padding-left: 0;
        text-align: center;
    }

    .footer-section ul li::before {
        display: none;
    }

    .footer-section ul li a:hover {
        transform: none;
    }

    .footer-section p {
        font-size: 0.9rem;
        text-align: center;
    }

    .footer-section a[href^="tel:"]:hover,
    .footer-section a[href^="mailto:"]:hover {
        transform: none;
    }

    .social-media {
        justify-content: center;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .events-header h2 {
        font-size: 1.8rem;
    }

    .events-header .eyebrow {
        font-size: 0.75rem;
    }

    .events-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 1.5rem;
    }

    .video-content h2 {
        font-size: 2rem;
    }

    /* Image Hero Section Small Mobile */
    .image-hero-section {
        height: 50vh;
        min-height: 350px;
        margin: 0;
    }

    .image-hero-content {
        padding: 1rem;
    }

    .image-hero-content h2 {
        font-size: 1.75rem;
    }

    .image-hero-content p {
        font-size: 0.95rem;
    }

    /* Video Section Small Mobile */
    .video-section {
        height: 50vh;
        min-height: 350px;
        margin: 0;
    }

    .video-hero-content {
        padding: 1rem;
    }

    .video-hero-content h2 {
        font-size: 1.75rem;
    }

    .video-hero-content p {
        font-size: 0.95rem;
    }

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

    .category-header h2 {
        font-size: 1.4rem;
    }

    .logo h1 {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    /* Navbar Small Mobile */
    .navbar {
        padding: 0.5rem 0;
    }

    body {
        padding-top: 60px;
    }

    .nav-container {
        padding: 0 12px;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo-image {
        width: 40px;
        height: 40px;
        border: none;
    }

    .logo h1 {
        font-size: 0.85rem;
    }

    /* Header Controls Small Mobile - Keep hidden */
    .header-controls {
        display: none !important;
    }

    .theme-toggle-desktop {
        display: none !important;
    }

    .language-selector-desktop {
        display: none !important;
    }

    /* Hamburger Small Mobile */
    .hamburger span {
        width: 20px;
        height: 2px;
    }

    /* Mobile Menu Small */
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    .nav-menu > .nav-item > a {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }

    .theme-toggle-menu,
    .language-selector-menu {
        padding: 0.875rem 1.25rem;
    }

    .theme-toggle-btn-menu {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
    }

    .language-selector-menu select {
        padding: 0.625rem 2rem 0.625rem 0.875rem;
        font-size: 0.85rem;
    }

    .slideshow-section {
        height: 450px;
    }

    .slide-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .slide-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .slide-content h2::after {
        width: 60px;
        height: 3px;
    }

    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .slide-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .slideshow-nav {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }

    .slideshow-nav.prev {
        left: 0.75rem;
    }

    .slideshow-nav.next {
        right: 0.75rem;
    }

    .event-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .event-card h3 {
        font-size: 1.1rem;
    }

    .event-card p {
        font-size: 0.9rem;
    }

    .event-card .event-number {
        font-size: 1.6rem;
    }

    .events-header h2 {
        font-size: 1.5rem;
    }

    .events-header p {
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .page-header-image {
        height: 250px;
    }

    .article-container {
        padding: 1.5rem 1rem;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-description {
        font-size: 1rem;
        padding: 1rem;
    }

    .image-slider-container {
        height: 300px;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .slider-nav.prev-slide {
        left: 8px;
    }

    .slider-nav.next-slide {
        right: 8px;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 1.75rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem 1.25rem;
    }

    /* Page Header Mobile */
    .page-header {
        padding: 3rem 0;
    }

    .page-header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-header-image {
        height: 300px;
    }

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

    .page-header-text h1.animate {
        text-align: center;
        opacity: 1;
    }

    .page-header-text p {
        font-size: 1rem;
    }

    #back-to-top {
        width: 38px;
        height: 38px;
        bottom: 1rem;
        right: 1rem;
    }

    #back-to-top i {
        font-size: 0.9rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .post-content h4 {
        font-size: 1.1rem;
    }

    .video-hero-content h1 {
        font-size: 1.75rem;
    }

    .video-hero-content p {
        font-size: 1rem;
    }

    .video-hero-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
    
    /* Container Small Mobile */
    .container {
        padding: 0 12px;
    }

    /* Achievements Grid Small Mobile */
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .achievements-section {
        padding: 3rem 0;
    }
    
    .achievement-item {
        padding: 2rem 1.5rem;
    }
    
    .achievement-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .achievement-name {
        font-size: 1rem;
    }

    /* Latest Section Small Mobile */
    .latest-section {
        padding: 2.5rem 0;
    }

    .latest-grid {
        gap: 1.5rem;
    }

    .latest-post-content {
        padding: 1.25rem;
    }

    .latest-post-content h3 {
        font-size: 1.1rem;
    }

    .latest-post-content p {
        font-size: 0.9rem;
    }

    .latest-post-image {
        height: 180px;
    }
}

