/* =========================================
   Rotary Youth Exchange Districts 5710 / 5680
   Main Stylesheet
   ========================================= */

/* CSS Variables */
:root {
    --rotary-blue: #005daa;
    --rotary-gold: #f7a823;
    --rotary-dark: #1a1a2e;
    --rotary-light: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--text-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--rotary-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--rotary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--rotary-gold);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li { margin-bottom: 0.5rem; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    background: var(--text-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--rotary-blue);
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rotary-blue);
}

.logo-subtext {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--rotary-gold);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.district-num {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.district-slash {
    color: var(--rotary-blue);
    font-weight: 300;
    opacity: 0.6;
    margin: 0 0.1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--rotary-blue);
    background: rgba(0, 93, 170, 0.1);
}

/* Google Translate Floating Widget */
.translate-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
}

.translate-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--rotary-blue);
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 93, 170, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.translate-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 93, 170, 0.4);
}

.translate-dropdown {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    display: none;
    min-width: 150px;
}

.translate-float:hover .translate-dropdown,
.translate-float:focus-within .translate-dropdown,
.translate-float.active .translate-dropdown {
    display: block;
}

#google_translate_element select {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
    font-family: var(--font-body);
    width: 100%;
}

#google_translate_element .goog-te-gadget {
    font-family: var(--font-body) !important;
    font-size: 0 !important;
}

#google_translate_element .goog-te-gadget > span {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-logo-link {
    display: none !important;
}

.nav-login {
    background: var(--rotary-blue);
    color: var(--text-light) !important;
}

.nav-login:hover {
    background: var(--rotary-dark);
}

/* Floating Login Button */
.floating-login {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--rotary-blue);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.2s;
}

.floating-login:hover {
    background: var(--rotary-dark);
    transform: translateY(-1px);
    color: #fff;
}

/* Mobile: hide floating login, show in nav menu instead */
@media (max-width: 768px) {
    .floating-login {
        display: none;
    }
}

/* Mobile nav login link - hidden on desktop */
.nav-login-mobile {
    display: none;
}

@media (max-width: 768px) {
    .nav-login-mobile {
        display: block;
        background: var(--rotary-blue);
        color: #fff !important;
        border-radius: 4px;
        margin-top: 0.5rem;
        text-align: center;
    }

    .nav-login-mobile:hover {
        background: var(--rotary-dark);
    }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--rotary-blue) 0%, var(--rotary-dark) 100%);
    color: var(--text-light);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Dual-District Hero Display */
.hero-districts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.hero-district-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--rotary-gold);
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-district-divider {
    width: 3px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--rotary-gold), transparent);
    border-radius: 2px;
    opacity: 0.8;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem !important;
}

.hero h2 {
    font-size: 2rem;
    color: var(--rotary-gold);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--rotary-blue) 0%, var(--rotary-dark) 100%);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--rotary-gold);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.bg-light {
    background: var(--rotary-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--rotary-blue);
    color: var(--text-light);
    border-color: var(--rotary-blue);
}

.btn-primary:hover {
    background: var(--rotary-dark);
    border-color: var(--rotary-dark);
    color: var(--text-light);
}

.btn-secondary {
    background: var(--rotary-gold);
    color: var(--rotary-dark);
    border-color: var(--rotary-gold);
}

.btn-secondary:hover {
    background: #e09600;
    border-color: #e09600;
    color: var(--rotary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--rotary-blue);
    border-color: var(--rotary-blue);
}

.btn-outline:hover {
    background: var(--rotary-blue);
    color: var(--text-light);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-danger {
    background: var(--error);
    color: var(--text-light);
    border-color: var(--error);
}

.btn-danger:hover {
    background: #c82333;
    border-color: #c82333;
    color: var(--text-light);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Welcome Section */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-text p {
    font-size: 1.125rem;
}

.welcome-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--rotary-blue);
    color: var(--text-light);
    padding: 2rem 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rotary-gold);
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Announcements */
.announcements-grid {
    width: 100%;
}

.announcements-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.announcement-card {
    background: var(--text-light);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--rotary-gold);
}

.announcement-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.announcement-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-card {
    background: var(--text-light);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    color: var(--rotary-blue);
}

/* Videos Section */
.videos-section {
    background: var(--light-bg, #f8f9fa);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: -1rem;
    margin-bottom: 2.5rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* Outbound Intro Grid - text + sidebar videos */
.outbound-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.sidebar-videos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-videos .video-card {
    margin: 0;
}

@media (max-width: 768px) {
    .outbound-intro-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--rotary-gold) 0%, #e09600 100%);
    color: var(--rotary-dark);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--rotary-dark);
    margin-bottom: 0.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary {
    background: var(--rotary-dark);
    border-color: var(--rotary-dark);
}

.cta-section .btn-primary:hover {
    background: var(--rotary-blue);
    border-color: var(--rotary-blue);
}

/* Content Blocks - see Enhanced Content Block section below */

.intro-text {
    font-size: 1.25rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rotary-gold);
    font-weight: bold;
}

.feature-list.numbered {
    counter-reset: step;
}

.feature-list.numbered li::before {
    content: counter(step);
    counter-increment: step;
    background: var(--rotary-blue);
    color: var(--text-light);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Four Way Test */
.four-way-test {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.test-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--rotary-light);
    border-radius: 8px;
}

.test-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--rotary-blue);
    color: var(--text-light);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Tabs */
.tab-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--rotary-blue);
}

.tab-btn.active {
    color: var(--rotary-blue);
}

.tab-btn.active::after {
    background: var(--rotary-blue);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background: var(--rotary-light);
    border-radius: 8px;
    padding: 2rem;
}

.info-card h3 {
    color: var(--rotary-blue);
    margin-bottom: 1rem;
}

.info-card ul, .info-card ol {
    margin: 0;
}

.note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Timeline - Enhanced Design */
.timeline {
    position: relative;
    padding: 0;
    margin: 2rem 0;
}

.timeline::before {
    display: none;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 93, 170, 0.1);
    border-left: 4px solid var(--rotary-blue);
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 93, 170, 0.15);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--rotary-gold);
    border-radius: 50%;
    border: 3px solid var(--rotary-blue);
}

.timeline-date {
    font-weight: 700;
    color: var(--rotary-blue);
    min-width: 200px;
    padding-right: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.timeline-content {
    flex: 1;
    font-weight: 500;
    color: var(--text-primary);
}

/* Timeline Mobile */
@media (max-width: 768px) {
    .timeline {
        margin: 1.5rem 0;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.25rem;
        margin-bottom: 0.75rem;
        border-left-width: 3px;
    }
    
    .timeline-item::before {
        left: -8px;
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
    
    .timeline-item:hover {
        transform: none;
    }
    
    .timeline-date {
        min-width: unset;
        padding-right: 0;
        font-size: 0.85rem;
        color: var(--rotary-gold);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .timeline-content {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Country Tags - Enhanced with Flags */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.country-tag {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(0, 93, 170, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.country-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 93, 170, 0.15);
    border-color: var(--rotary-blue);
}

.country-tag .flag {
    font-size: 1.5rem;
}

/* Country Grid Mobile */
@media (max-width: 768px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .country-tag {
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
        border-radius: 6px;
        gap: 0.4rem;
        min-width: 0;
        overflow: hidden;
    }
    
    .country-tag:hover {
        transform: none;
    }
    
    .country-tag:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 0.25rem);
    }
    
    .flag-img {
        width: 20px !important;
        min-width: 20px;
        height: auto;
        flex-shrink: 0;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .country-grid {
        gap: 0.4rem;
    }
    
    .country-tag {
        padding: 0.5rem 0.35rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }
    
    .flag-img {
        width: 18px !important;
        min-width: 18px;
    }
}

/* Content Box - Enhanced Styling */
.content-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-box h2 {
    color: var(--rotary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--rotary-gold);
    display: inline-block;
}

.content-box p {
    color: var(--text-primary);
    line-height: 1.8;
}

/* Enhanced Content Block - Only in main sections, not footer */
.section > .container > .content-block,
.section .content-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.section .content-block h2 {
    color: var(--rotary-blue);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section .content-block h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: var(--rotary-gold);
    border-radius: 2px;
}

.section .content-block p {
    line-height: 1.8;
}

.section .content-block.center {
    text-align: center;
}

.section .content-block.center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Testimonials */
.testimonial {
    background: var(--rotary-light);
    padding: 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-style: italic;
    margin: 2rem 0;
    border-left: 4px solid var(--rotary-gold);
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--rotary-blue);
}

/* FAQ */
.faq {
    max-width: 800px;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h4 {
    color: var(--rotary-blue);
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-secondary);
}

/* Process Steps */
.process-steps {
    list-style: none;
    padding: 0;
    max-width: 800px;
}

.process-steps li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--rotary-blue);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
}

.step-content h4 {
    margin-bottom: 0.25rem;
}

.step-content p {
    margin: 0;
    color: var(--text-secondary);
}

/* Volunteer Roles */
.volunteer-roles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.role-card {
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.role-card h4 {
    color: var(--rotary-blue);
}

/* Officers Grid */
.officers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 280px));
    gap: 2rem;
    justify-content: center;
}

.officer-card {
    background: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.officer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.officer-photo-placeholder {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e8f4fc 0%, #d0e8f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.officer-photo-placeholder .officer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.officer-photo-placeholder .photo-needed {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 93, 170, 0.85);
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.officer-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--rotary-light);
}

.officer-info {
    padding: 1.5rem;
}

.officer-info h3 {
    margin-bottom: 0.25rem;
    color: var(--rotary-dark);
}

.officer-title {
    color: var(--rotary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.officer-club {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.officer-email {
    font-size: 0.875rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-light);
    font-size: 0.875rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
}

#lightbox-caption {
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    opacity: 0.7;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--rotary-blue);
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-method h4 {
    margin-bottom: 0.25rem;
}

.contact-method p {
    margin: 0;
    color: var(--text-secondary);
}

.find-club {
    background: var(--rotary-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.find-club h3 {
    color: var(--rotary-blue);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rotary-blue);
    box-shadow: 0 0 0 3px rgba(0, 93, 170, 0.1);
}

.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

/* Login Page */
.login-section {
    min-height: calc(100vh - 70px - 300px);
    display: flex;
    align-items: center;
}

.login-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.login-box {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.login-box h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.login-box > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.login-footer a {
    display: block;
    margin-bottom: 0.5rem;
}

.login-help {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Dashboard */
.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    margin-bottom: 0.5rem;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dashboard-card {
    background: var(--text-light);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.dashboard-card h2 {
    color: var(--rotary-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.documents-list {
    max-height: 400px;
    overflow-y: auto;
}

.document-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.document-item:last-child {
    border-bottom: none;
}

.document-info h4 {
    margin-bottom: 0.25rem;
}

.document-meta {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Loading & Empty States */
.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.no-content {
    text-align: center;
    padding: 3rem;
    background: var(--rotary-light);
    border-radius: 8px;
}

/* Footer */
.footer {
    background: var(--rotary-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--rotary-gold);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--rotary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.7;
    font-size: 0.875rem;
}

.footer-links {
    margin: 0.75rem 0;
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.875rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--rotary-gold);
}

.footer-links .divider {
    margin: 0 0.75rem;
    opacity: 0.4;
}

.design-credit {
    margin-top: 1rem !important;
    font-size: 0.8rem !important;
    opacity: 0.6 !important;
}

/* Footer Dual-District Display */
.footer-districts {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rotary-gold);
    letter-spacing: 1px;
}

.footer-slash {
    font-weight: 300;
    opacity: 0.5;
    margin: 0 0.1rem;
}

.design-credit a {
    color: var(--rotary-gold) !important;
    opacity: 1;
}

/* =========================================
   Dual-District Application Cards
   ========================================= */

.apply-section {
    background: var(--rotary-light);
}

.apply-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.dual-district-apps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    max-width: 750px;
    margin: 0 auto;
}

.district-app-card {
    flex: 1;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.district-app-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.district-app-header {
    background: linear-gradient(135deg, var(--rotary-blue) 0%, var(--rotary-dark) 100%);
    padding: 1.5rem;
    text-align: center;
}

.district-app-badge {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--rotary-gold);
    letter-spacing: 3px;
}

.district-app-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    justify-content: center;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.district-app-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 0.5rem;
}

.divider-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
    border-radius: 1px;
}

.divider-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   District Link Cards (Club Directories, Volunteer)
   ========================================= */

.district-clubs-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.district-clubs-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.district-link-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.district-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.25rem;
    background: var(--rotary-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.district-link-card:hover {
    border-color: var(--rotary-blue);
    background: rgba(0, 93, 170, 0.05);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.district-link-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--rotary-dark);
}

.district-link-action {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--rotary-blue);
    white-space: nowrap;
}

.district-link-card:hover .district-link-action {
    color: var(--rotary-gold);
}

/* Program card dual links */
.program-card-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
}

/* =========================================
   Photo Showcase Grid
   ========================================= */

.photo-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.showcase-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.showcase-item:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Welcome Section Photo */
.welcome-photo {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-height: 350px;
}

.welcome-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--rotary-dark) 0%, #0d0d1a 100%);
    color: var(--text-light);
    padding: 1.25rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--rotary-gold);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn.accept {
    background: var(--rotary-gold);
    color: var(--rotary-dark);
}

.cookie-btn.accept:hover {
    background: #e09600;
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
    border-color: var(--text-light);
}

/* Accessibility Widget */
.accessibility-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
}

.accessibility-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rotary-blue) 0%, #004080 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 93, 170, 0.4);
    transition: var(--transition);
}

.accessibility-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 93, 170, 0.5);
}

.accessibility-toggle svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.accessibility-menu {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    min-width: 220px;
    display: none;
}

.accessibility-menu.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.accessibility-menu h4 {
    color: var(--rotary-blue);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--rotary-gold);
}

.accessibility-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
    color: var(--text-primary);
}

.accessibility-option:hover {
    background: var(--rotary-light);
}

.accessibility-option.active {
    background: rgba(0, 93, 170, 0.1);
    color: var(--rotary-blue);
    font-weight: 600;
}

.accessibility-option span {
    font-size: 1.25rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--text-light);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .welcome-grid,
    .two-column,
    .contact-grid,
    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .welcome-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .programs-grid,
    .info-cards,
    .volunteer-roles {
        grid-template-columns: 1fr;
    }

    .photo-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .four-way-test {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-districts {
        gap: 1rem;
    }

    .hero-district-num {
        font-size: 2.2rem;
    }

    .hero-district-divider {
        height: 40px;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .hero {
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .welcome-stats {
        grid-template-columns: 1fr;
    }

    .four-way-test {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .tab-nav {
        flex-direction: column;
    }

    .tab-btn {
        text-align: left;
    }

    .officers-grid {
        grid-template-columns: 1fr;
    }

    .dual-district-apps {
        flex-direction: column;
        gap: 0;
    }

    .district-app-divider {
        flex-direction: row;
        padding: 0.75rem 0;
    }

    .divider-line {
        width: auto;
        height: 2px;
        flex: 1;
    }

    .hero-districts {
        gap: 0.75rem;
    }

    .hero-district-num {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-district-divider {
        height: 30px;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .district-link-cards {
        flex-direction: column;
    }

    .photo-showcase {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Accessibility Mode Styles
   ========================================= */

/* Large Text Mode */
body.accessibility-large-text {
    font-size: 20px;
}

body.accessibility-large-text h1 {
    font-size: 3rem;
}

body.accessibility-large-text h2 {
    font-size: 2.5rem;
}

body.accessibility-large-text h3 {
    font-size: 2rem;
}

body.accessibility-large-text p,
body.accessibility-large-text li {
    font-size: 1.25rem;
    line-height: 1.8;
}

/* High Contrast Mode */
body.accessibility-high-contrast {
    background: #000 !important;
    color: #fff !important;
}

body.accessibility-high-contrast * {
    background-color: transparent;
}

body.accessibility-high-contrast .navbar,
body.accessibility-high-contrast .footer,
body.accessibility-high-contrast .page-header,
body.accessibility-high-contrast .hero {
    background: #000 !important;
    border-bottom: 2px solid #fff;
}

body.accessibility-high-contrast .content-block,
body.accessibility-high-contrast .info-card,
body.accessibility-high-contrast .program-card,
body.accessibility-high-contrast .officer-card {
    background: #000 !important;
    border: 2px solid #fff !important;
}

body.accessibility-high-contrast h1,
body.accessibility-high-contrast h2,
body.accessibility-high-contrast h3,
body.accessibility-high-contrast h4,
body.accessibility-high-contrast p,
body.accessibility-high-contrast span,
body.accessibility-high-contrast li {
    color: #fff !important;
}

body.accessibility-high-contrast a {
    color: #ffff00 !important;
    text-decoration: underline !important;
}

body.accessibility-high-contrast .btn {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

/* Highlight Links Mode */
body.accessibility-highlight-links a {
    background: linear-gradient(to bottom, transparent 50%, #ffff00 50%);
    padding: 0 4px;
    font-weight: 600;
}

body.accessibility-highlight-links a:hover {
    background: #ffff00;
    color: #000;
}

/* Readable Font Mode */
body.accessibility-readable-font,
body.accessibility-readable-font * {
    font-family: Arial, Helvetica, sans-serif !important;
    letter-spacing: 0.05em;
}

body.accessibility-readable-font p,
body.accessibility-readable-font li {
    line-height: 2;
    word-spacing: 0.1em;
}

/* =========================================
   Alumni Spotlight Styles
   ========================================= */
.alumni-spotlight {
    margin-top: 3rem;
}

.spotlight-card {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.spotlight-card .qa-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .alumni-spotlight {
        margin-top: 2rem;
        margin-left: -1rem;
        margin-right: -1rem;
    }
    
    .spotlight-card {
        padding: 1.25rem;
        border-radius: 0;
        box-shadow: none;
        background: linear-gradient(135deg, rgba(0, 93, 170, 0.95) 0%, rgba(0, 60, 120, 0.98) 100%);
    }
    
    .spotlight-card .qa-item {
        padding: 0.75rem;
    }
    
    .spotlight-card .qa-item p {
        font-size: 0.9rem;
    }
}

