@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #2d7d3e;
    --primary-light: #4a9b5e;
    --primary-dark: #1a5f2a;
    --accent: #d4af37;
    --accent-light: #e6c464;
    --accent-dark: #b8941f;
    --success: #2d7d3e;
    --warning: #d4af37;
    --surface: #ffffff;
    --surface-secondary: #f8fdf9;
    --surface-tertiary: #f1f8f3;
    --text-primary: #1a5f2a;
    --text-secondary: #2d7d3e;
    --text-muted: #6b8c72;
    --border: #e6f2e8;
    --border-light: #f1f8f3;
    --shadow-sm: 0 1px 2px 0 rgb(45 125 62 / 0.05);
    --shadow: 0 1px 3px 0 rgb(45 125 62 / 0.1), 0 1px 2px -1px rgb(45 125 62 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(45 125 62 / 0.1), 0 4px 6px -4px rgb(45 125 62 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(45 125 62 / 0.1), 0 8px 10px -6px rgb(45 125 62 / 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--surface);
    font-feature-settings: 'cv11', 'ss01';
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Enhanced Header Styles */
.header {
    background: var(--surface);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.header-top {
    background: var(--surface-tertiary);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.trending-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trending-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.trending-text {
    color: var(--text-secondary);
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.trending-text:hover {
    color: var(--primary);
}

.contact-info {
    display: flex;
    gap: 24px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: var(--surface-secondary);
    border-color: var(--primary);
}

.search-icon {
    width: 32px;
    height: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-icon:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.partnership-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: var(--gradient-accent);
    border: 1px solid var(--accent-dark);
    border-radius: 16px;
    font-weight: 600;
    font-size: 12px;
    color: white;
}

.header-main {
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.025em;
    box-shadow: var(--shadow-lg);
}

.brand-text h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    margin-bottom: 2px;
}

.brand-text p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.world-bank-logo {
    padding: 8px 16px;
    background: var(--surface);
    border: 2px solid var(--accent);
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 0.025em;
}

/* Navigation */
.nav {
    background: var(--surface-secondary);
    border-top: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 16px 24px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--accent);
    background: rgba(212, 175, 55, 0.1);
    border-bottom-color: var(--accent);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    min-width: 280px;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

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

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--border-light);
}

.dropdown-item:hover {
    background: var(--surface-secondary);
    color: var(--primary);
}

.dropdown-item:last-child {
    border-bottom: none;
}

/* Enhanced Hero Section with Video Background */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="800" fill="url(%23grid)"/></svg>') 0 0;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 800px;
    padding: 120px 0;
}

.hero h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: white;
    border-color: white;
}

/* Video placeholder with chart animation */
.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 125, 62, 0.8) 0%, rgba(74, 155, 94, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.chart-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    opacity: 0.3;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    height: 100%;
    gap: 8px;
    justify-content: center;
}

.chart-bar {
    width: 20px;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
    animation: chartGrow 2s ease-in-out infinite;
}

.chart-bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.chart-bar:nth-child(2) { height: 60%; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 85%; animation-delay: 0.4s; }
.chart-bar:nth-child(4) { height: 45%; animation-delay: 0.6s; }
.chart-bar:nth-child(5) { height: 70%; animation-delay: 0.8s; }
.chart-bar:nth-child(6) { height: 95%; animation-delay: 1s; }
.chart-bar:nth-child(7) { height: 55%; animation-delay: 1.2s; }

@keyframes chartGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.2); }
}

.trending-overlay {
    position: relative;
    z-index: 2;
    background: rgba(20, 40, 40, 0.35);
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 0 24px 0;
    width: 100%;
    margin: 0 auto;
}

.trending-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.trending-story {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    background: rgba(0,0,0,0.85);
    box-shadow: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1.5px solid transparent;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.trending-story:hover {
    background: var(--accent-dark, #d4af37);
    color: #222;
    border: 2.5px solid var(--accent, #e6c464);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
    text-shadow: 0 2px 12px rgba(255,255,255,0.25);
    transform: translateY(-4px) scale(1.05);
    z-index: 2;
}

.trending-story:hover .trending-story-content h4,
.trending-story:hover .trending-story-meta {
    color: #222;
    text-shadow: 0 2px 12px rgba(255,255,255,0.25);
}

.trending-story-image {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid #fff2;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
}

.trending-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.trending-story-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.trending-story-meta {
    font-size: 0.95rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffe;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* Section Styles */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title,
.section-subtitle {
    text-align: left !important;
    justify-content: flex-start !important;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.bg-secondary {
    background: var(--surface-secondary);
}

/* Card Styles */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 32px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-visual {
    background: var(--gradient-primary);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--accent);
}

.about-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><circle cx="100" cy="100" r="40" fill="rgba(255,255,255,0.1)"/><circle cx="300" cy="200" r="60" fill="rgba(255,255,255,0.05)"/><circle cx="200" cy="350" r="50" fill="rgba(255,255,255,0.08)"/></svg>') 0 0;
}

.about-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
}

/* Expert Cards */
.expert-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.expert-avatar {
    width: 120px;
    height: 120px;
    background: var(--surface-secondary);
    border: 4px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><circle cx="60" cy="45" r="20" fill="%232d7d3e"/><ellipse cx="60" cy="90" rx="35" ry="25" fill="%232d7d3e"/></svg>');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.expert-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.expert-role {
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px;
}

.expert-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* News Section - World Bank Style */
.news-section {
    padding: 120px 0;
}

.news-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.news-hero-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.025em;
}

.news-hero-text .highlight {
    color: var(--primary);
}

.explore-section {
    margin-top: 40px;
}

.explore-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-tag {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.see-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.see-all-link:hover {
    color: var(--accent-dark);
    border-bottom-color: var(--accent-dark);
}

.featured-articles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    border-radius: 16px;
}

.featured-article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.featured-article:nth-child(even) {
    direction: rtl;
}

.featured-article:nth-child(even) .article-content {
    direction: ltr;
    text-align: left;
}

.article-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-article:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 0 20px;
}

.article-category {
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.article-excerpt {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.article-date {
    font-weight: 500;
}

.article-read-time {
    position: relative;
    padding-left: 20px;
}

.article-read-time::before {
    content: '•';
    position: absolute;
    left: 8px;
}

/* Placeholder images with Ogun State theme */
.placeholder-image {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><circle cx="100" cy="80" r="30" fill="rgba(255,255,255,0.1)"/><circle cx="300" cy="150" r="40" fill="rgba(255,255,255,0.05)"/><circle cx="200" cy="220" r="25" fill="rgba(255,255,255,0.08)"/></svg>') 0 0;
}

/* Career Opportunities - Modern List Style */
.careers-section {
    padding: 120px 0;
    background: var(--surface);
}

.careers-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.careers-sidebar {
    position: sticky;
    top: 120px;
}

.careers-sidebar h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.careers-sidebar p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.careers-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    padding: 20px;
    background: var(--surface-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.opportunity-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.opportunity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.opportunity-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.opportunity-item:hover::before {
    transform: scaleY(1);
}

.opportunity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.opportunity-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.opportunity-type {
    background: var(--gradient-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.opportunity-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.opportunity-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.opportunity-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.apply-arrow {
    width: 40px;
    height: 40px;
    background: var(--surface-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
}

.opportunity-item:hover .apply-arrow {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

/* Supporting Units - Modern Dashboard Style */
.units-section {
    padding: 120px 0;
    background: var(--surface-secondary);
}

.units-header {
    text-align: center;
    margin-bottom: 80px;
}

.units-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.unit-dashboard-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.unit-dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.unit-dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.unit-dashboard-card:hover::before {
    transform: scaleX(1);
}

.unit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.unit-icon-large {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: var(--shadow);
}

.unit-status {
    padding: 6px 12px;
    background: var(--surface-tertiary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.unit-title-large {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}

.unit-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 14px;
}

.unit-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.unit-metric {
    text-align: center;
    padding: 16px;
    background: var(--surface-secondary);
    border-radius: 12px;
}

.metric-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.unit-actions {
    display: flex;
    gap: 12px;
}

.unit-btn {
    flex: 1;
    padding: 12px 16px;
    background: var(--surface-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><circle cx="200" cy="100" r="60" fill="rgba(255,255,255,0.02)"/><circle cx="800" cy="200" r="80" fill="rgba(255,255,255,0.03)"/><circle cx="1000" cy="80" r="40" fill="rgba(255,255,255,0.02)"/></svg>') 0 0;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.8;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Success Stories & Media Section - World Bank Style */
.media-section {
    padding: 120px 0;
    background: var(--surface);
}

.media-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 80px;
    position: relative;
}

.media-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 400px;
}

.hero-story {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-story:hover {
    transform: scale(1.02);
    z-index: 2;
}

.hero-story-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-story:hover .hero-story-bg {
    transform: scale(1.1);
}

.hero-story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: white;
}

.story-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.story-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: white;
}

.story-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.podcast-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

/* Latest Stories Section */
.latest-stories {
    margin-top: 80px;
}

.latest-header {
    text-align: center;
    margin-bottom: 60px;
}

.latest-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.latest-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.story-card {
    display: flex;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    border-radius: 12px;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--surface-secondary);
}

.story-image {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.story-content {
    flex: 1;
}

.story-content .story-category {
    color: var(--accent-dark);
    margin-bottom: 8px;
}

.story-content .story-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 8px;
}

.story-date {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Placeholder backgrounds for hero stories */
.hero-bg-1 {
    background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(30, 64, 175, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23e8f5e8" width="400" height="400"/><circle fill="%23c8e6c9" cx="100" cy="100" r="60"/><circle fill="%23a5d6a7" cx="300" cy="200" r="80"/><circle fill="%2381c784" cx="200" cy="350" r="50"/></svg>');
}

.hero-bg-2 {
    background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(30, 64, 175, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23f0f9ff" width="400" height="400"/><circle fill="%23bae6fd" cx="150" cy="150" r="70"/><circle fill="%2393c5fd" cx="250" cy="250" r="60"/><circle fill="%2360a5fa" cx="350" cy="100" r="40"/></svg>');
}

.hero-bg-3 {
    background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(30, 64, 175, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23fefce8" width="400" height="400"/><circle fill="%23fef3c7" cx="200" cy="150" r="90"/><circle fill="%23fde68a" cx="100" cy="300" r="60"/><circle fill="%23f59e0b" cx="350" cy="300" r="40"/></svg>');
}

/* Story image placeholders */
.story-placeholder {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

.nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.nav-menu.mobile-open .nav-link {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.nav-menu.mobile-open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--surface-secondary);
    margin-left: 24px;
}

/* About OGSTEP - New Design */
.about-section {
    padding: 120px 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="200" cy="200" r="100" fill="rgba(45,125,62,0.03)"/><circle cx="800" cy="400" r="150" fill="rgba(212,175,55,0.03)"/><circle cx="1000" cy="100" r="80" fill="rgba(45,125,62,0.02)"/></svg>') no-repeat;
    pointer-events: none;
}

.about-hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.about-hero h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.about-hero p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.feature-highlight {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 0 0 20px 20px;
}

.feature-highlight:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 24px;
    box-shadow: var(--shadow);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-mission {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 60px 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><circle cx="150" cy="100" r="40" fill="rgba(212,175,55,0.2)"/><circle cx="650" cy="200" r="60" fill="rgba(212,175,55,0.1)"/><circle cx="400" cy="350" r="30" fill="rgba(212,175,55,0.15)"/></svg>') no-repeat;
    opacity: 0.3;
}

.mission-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.mission-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.mission-text {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-card {
    background: var(--surface-secondary);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Responsive Header Styles */
@media (max-width: 768px) {
    .header-top {
        padding: 8px 0;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        font-size: 12px;
    }
    
    .trending-section {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        width: 100%;
    }
    
    .trending-text {
        font-size: 11px;
        line-height: 1.4;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .contact-info {
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .contact-info span {
        font-size: 11px;
    }
    
    .language-selector {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .header-main {
        padding: 12px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .logo {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .brand-text h1 {
        font-size: 24px;
        text-align: center;
    }
    
    .brand-text p {
        font-size: 12px;
        text-align: center;
        line-height: 1.3;
    }
    
    .world-bank-logo {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .world-bank-logo img {
        max-width: 120px !important;
    }
}

@media (max-width: 480px) {
    .header-top-content {
        font-size: 11px;
    }
    
    .trending-text {
        font-size: 10px;
    }
    
    .contact-info {
        gap: 12px;
    }
    
    .contact-info span {
        font-size: 10px;
    }
    
    .brand-text h1 {
        font-size: 20px;
    }
    
    .brand-text p {
        font-size: 11px;
    }
    
    .logo {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .world-bank-logo {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .world-bank-logo img {
        max-width: 100px !important;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom overrides to fix Bootstrap conflicts */

.nav, .nav-menu, .nav-container, .header-main {
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
}

.section,
.about-section,
.bg-secondary,
.careers-section,
.units-section {
    background: #f8fdf9 !important;
}

.card {
    background: #fff !important;
}

/* End custom overrides */

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .news-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-article {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-article:nth-child(even) {
        direction: ltr;
    }

    .article-image {
        order: -1;
    }

    .careers-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .careers-sidebar {
        position: static;
        text-align: center;
    }

    .careers-stats {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .opportunity-item {
        padding: 24px;
    }

    .opportunity-item:hover {
        transform: translateY(-4px);
    }

    .opportunity-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .opportunity-meta {
        flex-direction: column;
        gap: 8px;
    }

    .units-dashboard {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .unit-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .unit-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 13px;
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 80px 0;
        min-height: 500px;
    }

    .hero-content {
        text-align: center;
        padding: 80px 0;
    }

    .trending-overlay {
        display: none !important;
    }
    .trending-stories {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .chart-animation {
        width: 200px;
        height: 120px;
    }

    .grid {
        gap: 24px;
    }
    
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .category-tags {
        justify-content: center;
        margin-bottom: 20px;
    }

    .category-tag {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .news-hero-text h2 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .explore-section {
        text-align: center;
    }

    .media-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-story {
        min-height: 300px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        flex-direction: column;
        text-align: center;
    }
    
    .story-image {
        width: 100%;
        height: 200px;
        align-self: center;
    }
}

/* Mobile Header Bar Styles */
.mobile-header-bar {
    display: none;
}
@media (max-width: 768px) {
    .mobile-header-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #00723e;
        padding: 10px 16px;
        position: sticky;
        top: 0;
        z-index: 1100;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .mobile-header-logo img {
        max-width: 40px;
        height: auto;
    }
    .mobile-hamburger {
        background: none;
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        cursor: pointer;
        padding: 0;
    }
    .mobile-hamburger span {
        display: block;
        width: 24px;
        height: 3px;
        background: #fff;
        margin: 3px 0;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .header-top, .header-main {
        display: none !important;
    }
}

.mobile-header-title {
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
    margin-left: 2px;
    display: inline-block;
}

.menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: #fff;
    z-index: 2001;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    animation: menuFadeIn 0.3s;
    overflow-y: auto;
    max-height: 100vh;
    box-shadow: 0 0 32px 0 rgba(0,0,0,0.10);
    padding-bottom: 32px;
}
.menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #fff;
    border: none;
    font-size: 2.5rem;
    color: #222;
    cursor: pointer;
    z-index: 2100;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.menu-close:hover {
    background: #e53935;
    color: #fff;
}
@media (max-width: 768px) {
    .menu-overlay {
        padding-top: 0;
    }
    .menu-close {
        position: static;
        align-self: flex-end;
        margin: 38px 18px 18px 0;
        top: auto;
        right: auto;
        font-size: 2.2rem;
        width: 44px;
        height: 44px;
        z-index: 2100;
        background: #fff;
        color: #222;
    }
    .menu-close:hover {
        background: #e53935;
        color: #fff;
    }
    .overlay-nav {
        margin-top: 0;
    }
    .overlay-main {
        margin-top: 0;
    }
}
  
/* OGSTEP Mobile Header Styles */
.ogstep-mobile-header {
  display: none;
}
@media (max-width: 600px) {
  .ogstep-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px 0 8px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
  }
  .ogstep-header-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
  .ogstep-header-title {
    flex: 1;
    text-align: center;
    font-weight: bold;
    font-size: 1.05em;
    line-height: 1.1;
    color: #222;
    padding: 0 6px;
  }
  .ogstep-header-worldbank {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 56px;
  }
  .ogstep-header-worldbank-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  .ogstep-header-worldbank-text {
    font-size: 0.7em;
    color: #222;
    text-align: center;
    margin-top: 2px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  /* Hide the default header on mobile */
  .header, .mobile-header-bar { display: none !important; }
}
  