:root {
    --primary: #2d5a5a;
    --primary-dark: #1e4444;
    --primary-light: #3d7a7a;
    --secondary: #d4a841;
    --secondary-dark: #b8922d;
    --secondary-light: #e8c36b;
    --accent-teal: #4a9e9e;
    --accent-gold: #d4b44a;
    --accent-purple: #664199;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-gray: #f8fafc;
    --bg-dark: #0f1f1f;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Stylized "Clear" text throughout site */
.clear-brand {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Top Bar */
.top-bar {
    background: var(--bg-dark);
    padding: 10px 0;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-left: 30px;
    transition: color 0.2s;
}

.top-bar a:hover {
    color: var(--secondary);
}

.lang-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.lang-toggle:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.login-btn {
    background: var(--secondary);
    border: none;
    color: var(--text-dark);
    padding: 6px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.login-btn:hover {
    background: var(--secondary-dark);
}

.signout-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    padding: 6px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    margin-left: 12px;
}

.signout-btn:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 50%, var(--secondary) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

/* Logo Modal */
.logo-modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    padding: 30px;
    max-width: 400px;
    text-align: center;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 50%, var(--secondary) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.logo-modal-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo-text .clear-brand {
    font-size: inherit;
}

.logo-text span.initiative {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 18px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link .clear-brand {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-light);
    min-width: 200px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 100;
}

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

.nav-dropdown-content a {
    display: block;
    padding: 10px 14px;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.15s;
}

.nav-dropdown-content a:hover {
    background: var(--bg-gray);
    color: var(--primary);
}

.nav-item-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-light);
    min-width: 240px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 100;
}

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

.nav-item-dropdown a {
    display: block;
    padding: 10px 14px;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.15s;
}

.nav-item-dropdown a:hover {
    background: var(--bg-gray);
    color: var(--primary);
}

.btn-give {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 168, 65, 0.25);
}

.btn-give:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 168, 65, 0.35);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-actions .lang-toggle {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-gray);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-actions .lang-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a3535 30%, var(--primary) 70%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 168, 65, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-graphics .circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-graphics .circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    border-width: 2px;
    border-color: rgba(212, 168, 65, 0.15);
}

.hero-graphics .circle-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    background: rgba(255,255,255,0.02);
}

.hero-graphics .circle-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 2%;
    border-color: rgba(255,255,255,0.06);
}

.hero-graphics .circle-4 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 5%;
    border-color: rgba(255,255,255,0.05);
}

.hero-graphics .plus {
    position: absolute;
    color: rgba(255,255,255,0.12);
    font-size: 36px;
    font-weight: 300;
}

.hero-graphics .plus-1 {
    top: 15%;
    right: 20%;
}

.hero-graphics .plus-2 {
    bottom: 25%;
    right: 35%;
    font-size: 24px;
    color: rgba(212, 168, 65, 0.2);
}

.hero-graphics .plus-3 {
    top: 40%;
    left: 8%;
    font-size: 28px;
}

.hero-graphics .dots {
    position: absolute;
    right: 12%;
    top: 45%;
    display: grid;
    grid-template-columns: repeat(4, 8px);
    gap: 12px;
}

.hero-graphics .dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle-tagline {
    font-size: 2.2rem;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(212, 168, 65, 0.3);
}

.hero-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 540px;
}

.hero-cta-text {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--text-dark);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 168, 65, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 65, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s ease;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
}

.btn-secondary-light {
    background: transparent;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary-light:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 90, 90, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 28px;
    border-radius: var(--radius-md);
    text-align: left;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
}

.stat-card .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -1px;
    line-height: 1;
}

.stat-card .label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    line-height: 1.5;
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-light);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.stats-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-bar .stat {
    color: var(--text-dark);
}

.stats-bar .stat .number {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -1px;
}

.stats-bar .stat .label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 8px;
}

/* Section Styles */
.section {
    padding: 20px 0;
    background: var(--bg-gray);
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: left;
    margin-bottom: 40px;
    max-width: 650px;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.section-gray {
    background: var(--bg-gray);
}

.section-dark {
    background: var(--bg-dark);
}

.section-dark .section-header h2 {
    color: #ffffff;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

/* Resources Dashboard */
.resources-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.resources-column {
    background: white;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--border);
}

.resources-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
}

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

.resources-list li {
    margin-bottom: 8px;
}

.resources-list li a {
    display: block;
    padding: 12px 14px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.resources-list li a:hover {
    background: var(--bg-gray);
    color: var(--primary);
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .resources-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .resources-dashboard {
        grid-template-columns: 1fr;
    }
}

/* Program Cards */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: pointer;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: transparent;
}

.program-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--accent-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.program-card-content {
    padding: 28px;
}

.program-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.program-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.program-card .learn-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    transition: gap 0.2s;
}

.program-card .learn-more:hover {
    gap: 10px;
}

/* News Cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: transparent;
}

.news-card-image {
    height: 160px;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.news-card-content {
    padding: 24px;
}

.news-card .date {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 600;
}

.news-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* CLEAR Method Section */
.clear-method-section {
    background: var(--bg-gray);
    padding: 50px 20px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary) 0%, var(--accent-teal) 50%, var(--secondary) 100%) 1;
}

.clear-method-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.clear-method-content h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.clear-method-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 30px;
}

.clear-method-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.clear-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.clear-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.clear-letter {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 50%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.clear-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-align: left;
}

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

@media (max-width: 900px) {
    .clear-method-grid {
        flex-direction: column;
        align-items: center;
    }

    .clear-item {
        width: 100%;
        max-width: 320px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a3535 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 168, 65, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
    position: relative;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 32px;
    text-align: center;
    line-height: 1.7;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 16px 0 12px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 65px;
    width: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-dark), var(--bg-dark)), linear-gradient(135deg, var(--primary-light) 0%, var(--accent-teal) 50%, var(--secondary) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    margin-bottom: 10px;
}

.footer-brand .logo-text {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    font-size: 0.8rem;
    line-height: 1.4;
}

.footer .clear-brand,
.footer-links .clear-brand {
    background: linear-gradient(135deg, #7ec8e3 0%, #4a9e9e 50%, #2d5a5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links h4 {
    font-size: 0.7rem;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 2px 0;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.social-links a {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--text-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
}

.footer-disclaimer {
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    max-width: 550px;
    line-height: 1.6;
}

.footer-legal-links {
    margin-top: 10px;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.footer-separator {
    color: rgba(255,255,255,0.3);
    margin: 0 10px;
}

/* Content Pages */
.page-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a3535 30%, var(--primary) 70%, var(--primary-light) 100%);
    padding: 20px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 168, 65, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-hero-graphics .circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}

.page-hero-graphics .circle-1 {
    width: 120px;
    height: 120px;
    top: -30px;
    right: 10%;
    border-width: 2px;
    border-color: rgba(212, 168, 65, 0.2);
}

.page-hero-graphics .circle-2 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: 25%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.03);
}

.page-hero-graphics .circle-3 {
    width: 80px;
    height: 80px;
    bottom: -20px;
    right: 5%;
    border-color: rgba(255,255,255,0.08);
}

.page-hero-graphics .plus {
    position: absolute;
    color: rgba(255,255,255,0.15);
    font-size: 24px;
    font-weight: 300;
}

.page-hero-graphics .plus-1 {
    top: 20%;
    right: 15%;
}

.page-hero-graphics .plus-2 {
    bottom: 30%;
    right: 30%;
    font-size: 18px;
    color: rgba(212, 168, 65, 0.25);
}

.page-hero-graphics .dots {
    position: absolute;
    right: 20%;
    top: 60%;
    display: grid;
    grid-template-columns: repeat(3, 6px);
    gap: 8px;
}

.page-hero-graphics .dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: -0.5px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
}

.page-hero h1 .clear-brand {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.content-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: var(--shadow-md);
}

.content-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bg-gray);
    font-weight: 700;
}

.content-card h4 {
    font-size: 1rem;
    color: var(--primary);
    margin: 12px 0 8px;
    font-weight: 600;
}

.content-card p {
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.content-card ul {
    list-style: none;
    padding: 0;
}

.content-card ul li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-gray);
    padding-left: 32px;
    position: relative;
    line-height: 1.7;
}

.content-card ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 2px;
}

.content-card ul li:last-child {
    border-bottom: none;
}

.content-card ul li strong {
    color: var(--text-dark);
}

.info-box {
    background: var(--bg-gray);
    padding: 28px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 3px solid var(--primary);
}

.info-box p {
    margin: 0;
}

/* Quiz Styles */
.quiz-container {
    max-width: 650px;
    margin: 0 auto;
}

.quiz-progress {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--border);
}

.progress-dot.completed { background: var(--secondary); }
.progress-dot.current { background: var(--primary); }

.quiz-question {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-weight: 500;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    padding: 18px 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.quiz-option:hover {
    border-color: var(--primary);
    background: rgba(91, 138, 138, 0.05);
}

.quiz-option.correct {
    border-color: var(--secondary);
    background: rgba(201, 162, 39, 0.1);
}

.quiz-option.incorrect {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91, 138, 138, 0.1);
}

.btn-submit {
    background: var(--primary);
    color: white;
    padding: 14px 36px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px;
    background: var(--bg-gray);
    border-radius: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-group label strong {
    display: block;
    margin-bottom: 4px;
}

.checkbox-desc {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.checkbox-desc a {
    color: var(--primary);
    text-decoration: underline;
}

.checkbox-desc a:hover {
    color: var(--primary-dark);
}

/* Founder Section Styles */
.founder-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 20px;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    background: var(--bg-gray);
    border: 4px solid var(--primary);
    box-shadow: 0 8px 24px rgba(0, 113, 173, 0.15);
}

.founder-info {
    flex: 1;
}

.founder-info h4 {
    margin-bottom: 6px;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.founder-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
}

#founder-bio {
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 600px) {
    .founder-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .founder-image {
        width: 160px;
        height: 160px;
    }
}

/* Join Team Card Styles */
.join-team-card {
    margin-top: 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border);
}

.join-team-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.join-team-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.join-team-header h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.join-team-card > p {
    color: var(--text-gray);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.join-team-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.join-option {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.join-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.join-option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(45, 90, 90, 0.2);
}

.join-option-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.join-option-icon-alt {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    box-shadow: 0 4px 12px rgba(212, 168, 65, 0.2);
}

.join-option h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.join-option-audience {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.join-option-desc {
    color: var(--text-gray);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.join-option .btn-primary,
.join-option .btn-secondary-light {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.8rem;
}

@media (max-width: 700px) {
    .join-team-options {
        grid-template-columns: 1fr;
    }

    .join-team-card {
        padding: 16px;
    }
}

/* About Page Styles */
.about-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.about-mission {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
}

.about-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.about-card-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.about-mission h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.about-lead {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.about-problem-intro {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.problem-item {
    padding: 12px;
    background: var(--bg-gray);
    border-radius: 8px;
    text-align: center;
}

.problem-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.problem-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.problem-item h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.problem-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.problem-consequences {
    padding: 12px;
    background: #fff0f0;
    border-radius: 8px;
    border-left: 3px solid #ff6b6b;
}

.problem-consequences h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.problem-consequences ul {
    margin-left: 16px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.problem-consequences li {
    margin-bottom: 4px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stat-item {
    padding: 14px;
    background: var(--bg-gray);
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-percent {
    font-size: 1rem;
    color: var(--secondary-dark);
    font-weight: 600;
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 6px;
}

.stat-source {
    font-size: 0.7rem;
    color: var(--text-gray);
    opacity: 0.7;
    font-style: italic;
}

/* Solution Pillars */
.solution-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.pillar {
    padding: 14px;
    background: var(--bg-gray);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.pillar-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.pillar h4 {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.pillar p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.value-item {
    padding: 12px;
    background: var(--bg-gray);
    border-radius: 8px;
    border-left: 3px solid var(--secondary);
}

.value-item h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .problem-grid,
    .solution-pillars {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Programs Section Styles */
.program-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.program-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.program-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.program-header h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.program-intro {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 10px;
    font-weight: 500;
}

.program-list {
    margin: 0 0 12px 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.program-list li {
    margin-bottom: 4px;
}

.program-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    padding: 12px;
    background: var(--bg-gray);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--secondary);
    margin: 0;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: var(--bg-gray);
    border-radius: var(--radius-sm);
}

.goal-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.goal-item span {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Two Column Grid */
.two-col-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .two-col-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature List */
.feature-list {
    margin: 0 0 0 20px;
    padding: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.feature-list li {
    margin-bottom: 6px;
    position: relative;
}

.feature-list li::marker {
    color: var(--primary);
}

.scalability-note {
    margin-top: 12px;
    padding: 10px;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f4e8 100%);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-gray);
    border-left: 3px solid var(--primary);
}

/* Officers Section Styles */
.officers-intro {
    color: var(--text-gray);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.officers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.officer-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px;
    transition: all 0.3s ease;
}

.officer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.officer-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.officer-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.officer-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.officer-card h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
}

.officer-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 10px;
}

.officer-quals {
    font-size: 0.8rem;
    padding: 8px 10px;
    background: var(--bg-gray);
    border-radius: 6px;
    line-height: 1.4;
}

.officer-quals strong {
    color: var(--primary);
    display: block;
    margin-bottom: 2px;
}

.officer-quals span {
    color: var(--text-gray);
}

/* Apply Box */
.apply-box {
    margin-top: 16px;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--bg-gray) 0%, #f0f5f8 100%);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.apply-box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.apply-box-header svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.apply-box-header h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
}

.apply-box p {
    margin-bottom: 8px;
    color: var(--text-gray);
    font-size: 0.8rem;
}

.apply-box a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.apply-box a:hover {
    text-decoration: underline;
}

.apply-box ul {
    margin-left: 18px;
    color: var(--text-gray);
    font-size: 0.8rem;
}

.apply-box li {
    margin-bottom: 4px;
}

/* Notice Box */
.notice-box {
    margin-top: 8px;
    padding: 10px 12px;
    background: #fff8e6;
    border-radius: 6px;
    border-left: 3px solid var(--secondary);
}

.notice-box-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.notice-box-header svg {
    width: 16px;
    height: 16px;
    color: var(--secondary-dark);
}

.notice-box-header h4 {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin: 0;
}

.notice-box ul {
    margin-left: 14px;
    color: var(--text-gray);
    font-size: 0.75rem;
}

.notice-box li {
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .officers-grid {
        grid-template-columns: 1fr;
    }
}

/* Sources Box Styles */
.sources-box {
    margin-top: 30px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--bg-gray) 0%, #f0f5f8 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.sources-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--primary);
}

.sources-icon {
    width: 20px;
    height: 20px;
}

.sources-header strong {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sources-list {
    margin: 0;
    padding-left: 24px;
    counter-reset: source-counter;
    list-style: none;
}

.sources-list li {
    position: relative;
    padding: 12px 0;
    padding-left: 8px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    counter-increment: source-counter;
}

.sources-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sources-list li::before {
    content: counter(source-counter) ".";
    position: absolute;
    left: -20px;
    color: var(--primary);
    font-weight: 600;
}

.source-authors {
    color: var(--text-dark);
    font-weight: 500;
}

.source-title {
    display: block;
    margin: 4px 0;
    color: var(--text-dark);
}

.source-journal {
    color: var(--text-gray);
}

.source-link {
    display: inline-block;
    margin-top: 4px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.source-link:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-secondary {
    background: var(--secondary);
    color: var(--text-dark);
}

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

/* Text Utilities */
.text-muted {
    color: var(--text-gray);
    margin-bottom: 8px;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-bottom: 0;
}

.tool-card {
    background: linear-gradient(135deg, var(--bg-gray) 0%, #f0f5f5 100%);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary);
}

.tool-card h5 {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.tool-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Phases Timeline */
.phases-timeline {
    position: relative;
    margin-top: 20px;
    padding-left: 40px;
}

.phases-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    border-radius: 2px;
}

.phase-item {
    position: relative;
    padding: 20px 24px;
    margin-bottom: 16px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.phase-item:last-child {
    margin-bottom: 0;
}

.phase-item:hover {
    background: #f0f5f8;
    transform: translateX(8px);
}

.phase-marker {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(45, 90, 90, 0.3);
    z-index: 1;
}

.phase-current .phase-marker {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    box-shadow: 0 2px 12px rgba(212, 168, 65, 0.4);
}

.phase-current {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e6 100%);
    border: 1px solid var(--secondary-light);
}

.phase-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phase-content strong {
    color: var(--secondary-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phase-content span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.modal-header h2 {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.modal-body {
    padding: 28px;
}

.modal-body h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 24px 0 12px;
    font-weight: 600;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.modal-body ul {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-left: 20px;
    margin-bottom: 12px;
}

/* Dashboard Styles */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.dashboard-section h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dashboard-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dashboard-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.dashboard-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 14px;
}

.dashboard-card-content h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.dashboard-card-content p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 1024px) {
    .dashboard-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        max-width: 450px;
        margin: 0 auto;
    }

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

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .stats-bar-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        text-align: center;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

    .hero-content,
    .section-content,
    .header-content,
    .footer-content,
    .top-bar-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .programs-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

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

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

    .section {
        padding: 60px 0;
    }

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

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

    .content-card {
        padding: 28px;
    }

    .page-hero h1,
    .page-hero p {
        padding: 0 24px;
    }
}

/* Upcoming Opportunities Section */
.upcoming-opportunities-section {
    background: var(--bg-gray);
    padding: 60px 0;
}

.upcoming-opportunities-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.upcoming-opportunities-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.opportunity-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 50%, var(--secondary) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.opportunity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.opportunity-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.opportunity-details h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.opportunity-details p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Coming Soon Button */
.btn-coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--text-gray) !important;
    color: white !important;
    border: none !important;
}

.btn-coming-soon:hover {
    opacity: 0.6;
    transform: none;
}

@media (max-width: 768px) {
    .opportunity-card {
        flex-direction: column;
        text-align: center;
    }

    .upcoming-opportunities-content h2 {
        font-size: 1.5rem;
    }
}

/* Upcoming Opportunities in Programs Page */
.opportunity-card-programs {
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 50%, var(--secondary) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
}
