/* Modern Launch-Inspired Theme for 18for0 */

:root {
    --primary-color: #0c1e47;
    --primary-dark: #091633;
    --primary-light: #1e3a8a;
    --secondary-color: #06b6d4;
    --secondary-dark: #0891b2;
    --accent-color: #10b981;
    --text-color: #0f172a;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #1e293b;
    --bg-gradient: linear-gradient(135deg, #0c1e47 0%, #091633 100%);
    --hero-gradient: linear-gradient(135deg, #0c1e47 0%, #1e3a8a 50%, #3b82f6 100%);
    --border-color: #e2e8f0;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* Account for sticky header */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--bg-color);
}

/* Consistent Paragraph and Heading Spacing */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-top: 0;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

ul, ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

a {
    color: var(--secondary-color);
    transition: color 0.2s;
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
}

/* Content area links - more visible */
.content a,
main a {
    color: var(--secondary-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.content a:hover,
main a:hover {
    color: var(--primary-color);
    text-decoration-thickness: 2px;
}

/* Override for buttons and special elements */
.btn,
.btn a,
a.btn,
.nav-menu a,
.top-bar a,
.social-links a,
.country-grid a,
.team-member a,
.card a,
.logo a,
table a {
    text-decoration: none !important;
}

table a {
    color: var(--secondary-color);
}

table a:hover {
    color: var(--primary-color);
}

strong, b {
    font-weight: 700;
}

hr {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 3rem 0;
}

blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Section Spacing */
section {
    margin: 3rem 0;
}

section:first-child {
    margin-top: 0;
}

/* Content Divisions */
.content-section,
article {
    margin-bottom: 3rem;
}

.content-section:last-child,
article:last-child {
    margin-bottom: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

/* Main Content Area */
main {
    min-height: 50vh;
}

/* Header */
.site-header {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

/* Top Bar */
.top-bar {
    background: var(--bg-gradient);
    padding: 0.3rem 0;
}

.top-bar .container {
    padding-left: 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-bar .social-links {
    display: flex;
    gap: 0.75rem;
    padding: 0;
    justify-content: flex-start;
    margin: 0;
}

.top-bar .social-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s;
}

.top-bar .social-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.top-bar .header-actions {
    display: flex;
    gap: 0.5rem;
}

/* Main Header */
.main-header {
    background: var(--bg-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0 0.6rem 0;
    gap: 1.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu li a {
    display: block;
    padding: 0.4rem 0.8rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    font-weight: 500;
}

.nav-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.has-dropdown:hover .dropdown-toggle i,
.has-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    z-index: 1100;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 2px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.active .dropdown-menu {
    display: block;
    pointer-events: auto;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 0;
    transition: all 0.2s;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(12, 30, 71, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(12, 30, 71, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
}

.btn-primary-small,
.btn-secondary-small {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary-small {
    background: white;
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary-small:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.btn-secondary-small {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-small:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    justify-content: center;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.25rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Home Hero */
.home-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.home-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.home-hero h2 {
    font-size: 1.875rem;
    font-weight: 600;
    opacity: 0.95;
}

/* Home Content */
.home-content {
    padding: 3rem 0;
}

.home-content h2 {
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.home-content h2:first-child {
    margin-top: 0;
}

/* Section anchors */
.home-content a[name] {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}

.home-content ul li::marker,
.page-body ul li::marker {
    color: var(--primary-color);
}

/* Page Content */
.page-content {
    padding: 3rem 0;
    min-height: 60vh;
}

.page-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.page-header h1 {
    margin-top: 0;
    color: var(--primary-color);
}

.page-body h2 {
    color: var(--primary-color);
}

.page-body img {
    box-shadow: var(--shadow-md);
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: white;
}

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

.footer-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-section ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-section .social-links {
    justify-content: flex-start;
    padding: 0.5rem 0;
}

.footer-section .social-links a {
    color: white;
    opacity: 0.9;
}

.footer-section .social-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.disclaimer {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.copyright {
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.9;
}

.copyright p {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .menu-icon {
        display: flex;
        order: -1;
        z-index: 1000;
        margin-right: auto;
    }
    
    .logo {
        order: 0;
    }
    
    .main-nav {
        order: 4;
        flex-basis: 100%;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: white;
        border-top: 1px solid var(--border-color);
        margin-top: 0.5rem;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        display: flex;
    }
    
    .nav-menu li a {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        display: block;
        border: none;
        box-shadow: none;
        background: var(--bg-light);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-dropdown:hover .dropdown-menu {
        max-height: 0;
    }
    
    .dropdown-toggle {
        cursor: pointer;
    }
    
    .has-dropdown.active .dropdown-menu {
        max-height: 1000px;
    }
    
    .dropdown-menu li a {
        padding-left: 2rem;
        background: var(--bg-light);
        border-bottom: 1px solid var(--border-color);
    }
    
    .header-actions {
        flex-wrap: wrap;
    }
    
    .home-hero h1 {
        font-size: 1.875rem;
    }
    
    .home-hero h2 {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Mobile spacing adjustments */
    h1 {
        font-size: 2rem;
        margin-top: 0;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
    
    p {
        margin-bottom: 1rem;
    }
    
    section {
        margin: 2rem 0;
    }
    
    .page-content,
    .home-content {
        padding: 2rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .btn {
        font-size: 0.875rem;
        padding: 0.4rem 1rem;
    }
    
    .home-hero {
        padding: 3rem 0;
    }
    
    .home-hero h1 {
        font-size: 1.5rem;
    }
    
    .home-hero h2 {
        font-size: 1.25rem;
    }
    
    /* Extra small screen spacing */
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    h3 {
        font-size: 1.15rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    section {
        margin: 1.5rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .page-content,
    .home-content {
        padding: 1.5rem 0;
    }
}

/* Country navigation grid for Europe page */
.country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.country-grid div {
    padding: 0.25rem 0.5rem;
    text-align: left;
}

@media (max-width: 768px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .country-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* ================================
   HOME PAGE STYLES
   ================================ */

/* Hero Section */
.hero-section {
    background: var(--bg-gradient);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    margin: -2rem -5px 3rem -5px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: white;
}

.hero-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.stat-box {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Content Sections with Images */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.content-section.reverse {
    direction: rtl;
}

.content-section.reverse > * {
    direction: ltr;
}

.content-text {
    padding: 1rem;
}

.content-text h2 {
    margin-top: 0;
}

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

.content-text ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.content-image {
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Grid Sections */
.demands-grid,
.reliability-grid,
.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

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

.demand-card,
.reliability-card,
.cta-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.demand-card:hover,
.reliability-card:hover,
.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.demand-card h3,
.reliability-card h3,
.cta-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.cta-card {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.cta-card p {
    flex-grow: 1;
}

.cta-card .btn {
    margin-top: 1.5rem;
    width: 100%;
}

/* CTA Section */
.cta-section {
    background: var(--bg-light);
    padding: 3rem 2rem;
    margin: 3rem -5px;
    border-radius: 12px;
}

.cta-section h2 {
    text-align: center;
    margin-top: 0;
}

/* About Section */
.about-section {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-gradient);
    color: white;
    margin: 3rem -5px -2rem -5px;
    border-radius: 12px 12px 0 0;
}

.about-section h2 {
    color: white;
    margin-top: 0;
}

.about-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.about-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.why-nuclear-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

/* Responsive Design for Home Page */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content h3 {
        font-size: 1.25rem;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .content-section,
    .why-nuclear-section {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .content-section.reverse {
        direction: ltr;
    }
    
    .content-section .content-text {
        order: 2;
    }
    
    .content-section .content-image {
        order: 1;
    }
    
    .demands-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .reliability-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h3 {
        font-size: 1.1rem;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

/* ================================
   PUBLICATIONS PAGE STYLES
   ================================ */

.publications-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.publications-intro strong {
    display: block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Featured Publication */
.featured-publication {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    background: var(--bg-gradient);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: var(--shadow-xl);
}

.publication-cover img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.publication-details h3 {
    margin-top: 0;
    color: white;
    font-size: 2rem;
}

.publication-details p {
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.publication-details ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.publication-details ul li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.publication-details .btn {
    margin-top: 1.5rem;
    display: block;
    width: 100%;
    text-align: center;
}

/* Publications Grid */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    align-items: stretch;
}

.publication-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.publication-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.publication-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.publication-info h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.publication-info p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.publication-info .btn {
    margin-top: auto;
    flex-shrink: 0;
    display: block;
    width: 100%;
    text-align: center;
}

/* Academic Publications */
.academic-publications {
    margin: 3rem 0;
}

.academic-pub {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.pub-icon {
    font-size: 3rem;
    text-align: center;
    padding-top: 0.5rem;
}

.pub-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.pub-content strong {
    color: var(--secondary-color);
}

/* Webinars Section */
.webinars-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.webinars-section h3 {
    margin-top: 2rem;
    color: var(--primary-color);
}

.webinars-section ul {
    list-style: none;
    padding: 0;
}

.webinars-section ul li {
    padding-left: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.webinar-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.webinar-icon {
    font-size: 3rem;
    text-align: center;
    padding-top: 0.5rem;
}

.webinar-content h3 {
    margin-top: 0;
}

.webinar-content strong {
    color: var(--secondary-color);
}

.webinar-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.youtube-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Updates Section */
.updates-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.updates-section > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.update-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.update-card h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.update-card p {
    margin-bottom: 1.5rem;
}

/* Publications Footer */
.publications-footer {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    font-style: italic;
    color: var(--text-light);
}

/* Responsive Design for Publications Page */
@media (max-width: 768px) {
    .featured-publication {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .publication-cover {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .publications-grid {
        grid-template-columns: 1fr;
    }
    
    .academic-pub,
    .webinar-card {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    
    .pub-icon,
    .webinar-icon {
        font-size: 2rem;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
    
    .webinar-actions {
        flex-direction: column;
    }
    
    .webinar-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .featured-publication {
        padding: 1.5rem;
    }
    
    .publications-intro,
    .webinars-section,
    .updates-section {
        padding: 1.5rem;
    }
    
    .academic-pub,
    .webinar-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ================================
   SUBMISSIONS PAGE STYLES
   ================================ */

.submissions-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.submissions-intro strong {
    display: block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Submissions Grid */
.submissions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    align-items: stretch;
}

.submission-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.submission-header {
    background: var(--bg-gradient);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submission-year {
    font-size: 1.5rem;
    font-weight: bold;
}

.submission-icon {
    font-size: 2.5rem;
}

.submission-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.submission-content > * {
    flex-shrink: 0;
}

.submission-content h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.submission-content strong {
    color: var(--secondary-color);
    display: block;
    margin-top: 0.5rem;
}

.submission-content ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1.5rem 0;
}

.submission-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.submission-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.submission-content .btn {
    margin-top: auto;
    align-self: flex-start;
    flex-shrink: 0;
}

.submission-content p:has(.btn) {
    margin: 0;
    margin-top: auto;
    flex-shrink: 0;
}

/* Advocacy Section */
.advocacy-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.advocacy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.advocacy-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.advocacy-card h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Get Involved Section */
.get-involved-section {
    background: var(--bg-gradient);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.involvement-content {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.involvement-content h3 {
    color: white;
    margin-top: 0;
    font-size: 2rem;
}

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

.involvement-content ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.involvement-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.submissions-footer {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

.submissions-footer strong {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--primary-color);
}

/* Responsive Design for Submissions Page */
@media (max-width: 768px) {
    .submissions-grid {
        grid-template-columns: 1fr;
    }
    
    .advocacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .involvement-actions {
        flex-direction: column;
    }
    
    .involvement-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .submissions-intro,
    .advocacy-section,
    .get-involved-section {
        padding: 1.5rem;
    }
    
    .advocacy-grid {
        grid-template-columns: 1fr;
    }
    
    .submission-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ================================
   NEWSLETTER PAGE STYLES
   ================================ */

.newsletter-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.newsletter-intro ul {
    margin: 1rem 0;
}

.featured-newsletter {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--bg-gradient);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: var(--shadow-xl);
}

.newsletter-icon {
    font-size: 4rem;
    text-align: center;
}

.newsletter-details h3 {
    margin-top: 0;
    color: white;
    font-size: 1.8rem;
}

.newsletter-details p {
    font-size: 1.1rem;
    margin: 1rem 0 1.5rem;
}

.newsletter-archive {
    max-width: 800px;
    margin: 2rem auto;
}

.newsletter-archive table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-archive table thead th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.newsletter-archive table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.newsletter-archive table tbody tr:last-child {
    border-bottom: none;
}

.newsletter-archive table tbody td {
    padding: 1rem;
}

.newsletter-archive table tbody td a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.newsletter-archive table tbody td a::before {
    content: "📄";
    margin-right: 0.5rem;
}

.newsletter-archive table tbody td a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.newsletter-archive table tbody tr:hover {
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .featured-newsletter {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .newsletter-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .newsletter-intro,
    .featured-newsletter {
        padding: 1.5rem;
    }
    
    .newsletter-archive table tbody td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* ================================
   EVENTS PAGE STYLES
   ================================ */

.events-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    line-height: 1.8;
}

.events-intro strong {
    display: block;
    margin-top: 1rem;
    color: var(--primary-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.event-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.event-date {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1rem;
    width: fit-content;
}

.event-card .event-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 200px;
}

.event-card .event-content h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.event-card .event-content strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.event-card .event-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.event-card .event-content p:nth-last-of-type(2) {
    flex-grow: 1;
}

.event-card .event-content p:last-of-type {
    margin-top: auto;
    margin-bottom: 0;
    flex-shrink: 0;
}

.event-card .event-content .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.youtube-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.youtube-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.engagement-section {
    margin: 3rem 0;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.engagement-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.engagement-card h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.engagement-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.engagement-card ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.engagement-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.engagement-card .btn {
    margin-top: 1.5rem;
}

.events-footer {
    background: var(--bg-gradient);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.events-footer h2 {
    color: white;
    margin-top: 0;
    font-size: 2.2rem;
}

.events-footer p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.events-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .events-grid,
    .engagement-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card,
    .engagement-card {
        padding: 1.5rem;
    }
    
    .youtube-section {
        padding: 2rem;
    }
    
    .events-footer {
        padding: 2rem;
    }
    
    .events-actions {
        flex-direction: column;
    }
    
    .events-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .events-intro,
    .event-card,
    .engagement-card,
    .youtube-section,
    .events-footer {
        padding: 1.5rem;
    }
    
    .event-content h3 {
        font-size: 1.2rem;
    }
}

/* ================================
   EVENT DETAIL PAGE STYLES
   ================================ */

.event-detail {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.event-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #164e9c 100%);
    color: white;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.event-header h1 {
    font-size: 2.5rem;
    margin: 0 0 1rem;
    font-weight: 700;
}

.event-date {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
    margin: 0;
}

.event-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--secondary-color);
}

.event-intro p {
    margin: 0;
}

.event-detail .event-content {
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.event-detail .event-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--secondary-color);
}

.event-detail .event-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.event-detail .event-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
}

.event-detail .event-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.event-detail .event-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.event-detail .event-content li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.event-detail .event-content li strong {
    color: var(--primary-color);
}

.speakers-section {
    margin: 3rem 0;
}

.speaker-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.speaker-card h4 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.speaker-role {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.speaker-card p {
    margin: 0;
    line-height: 1.8;
}

.speaker-card p + p {
    margin-top: 1rem;
}

.video-section {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.video-section h2 {
    border: none;
    margin: 0 0 1rem;
    padding: 0;
}

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

.video-section .btn {
    display: inline-block;
    margin-top: 1rem;
}

.event-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #164e9c 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
    display: block;
}

.event-footer h2,
.event-footer h3 {
    font-size: 2rem;
    margin: 0 0 1rem;
    color: white !important;
}

.event-footer p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white !important;
}

.footer-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-actions .btn {
    min-width: 200px;
}

.footer-actions .btn-secondary {
    background: white;
    color: var(--primary-color);
}

.footer-actions .btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Event Detail Page Responsive */
@media (max-width: 768px) {
    .event-header h1 {
        font-size: 2rem;
    }
    
    .event-date {
        font-size: 1.1rem;
    }
    
    .event-intro {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .event-detail .event-content {
        padding: 0 1rem;
    }
    
    .event-detail .event-content h2 {
        font-size: 1.6rem;
    }
    
    .speaker-card {
        padding: 1.5rem;
    }
    
    .video-section {
        padding: 2rem 1.5rem;
    }
    
    .footer-actions {
        flex-direction: column;
    }
    
    .footer-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .event-header {
        padding: 2rem 1.5rem;
    }
    
    .event-header h1 {
        font-size: 1.75rem;
    }
    
    .event-detail .event-content h2 {
        font-size: 1.5rem;
    }
    
    .speaker-card h4 {
        font-size: 1.3rem;
    }
    
    .event-footer {
        padding: 2rem 1.5rem;
    }
}

/* ================================
   LINKS PAGE STYLES
   ================================ */

.links-page {
    max-width: 1200px;
    margin: 0 auto;
}

.links-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.links-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin: 0 0 1rem;
}

.links-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Featured Resources Section */
.featured-resources {
    margin: 4rem 0;
}

.featured-resources h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.resource-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 0 1rem;
}

.resource-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
    flex-grow: 1;
}

.resource-card .btn {
    width: 100%;
    margin-top: auto;
    flex-shrink: 0;
}

/* Resources Section */
.resources-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.resources-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.link-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.2s ease;
}

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

.link-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.link-item p {
    margin: 0 0 1rem;
    line-height: 1.6;
    color: #555;
    font-size: 0.95rem;
}

.link-item a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.link-item a:hover {
    text-decoration: underline;
}

/* Educational Section */
.educational-section {
    margin: 4rem 0;
}

.educational-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.edu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.edu-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #164e9c 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.edu-card:hover {
    transform: translateY(-5px);
}

.edu-card h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: white;
}

.edu-card p {
    margin: 0 0 1.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

.edu-card a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
}

.edu-card a:hover {
    opacity: 0.9;
}

/* Social Section */
.social-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.social-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 0 1rem;
}

.social-section > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.social-section .social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-link {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.social-link .icon {
    font-size: 2.5rem;
}

.social-link strong {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    display: block;
}

.social-link p {
    color: #555;
    font-size: 0.9rem;
    margin: 0;
}

/* Links Footer */
.links-footer {
    margin: 4rem 0 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #164e9c 100%);
    color: white;
    border-radius: 12px;
    text-align: center;
}

.links-footer h3 {
    font-size: 2rem;
    margin: 0 0 1rem;
    color: white;
}

.links-footer > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.involvement-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
    color: white;
}

.step p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.footer-actions .btn {
    min-width: 200px;
}

.footer-actions .btn-secondary {
    background: white;
    color: var(--primary-color);
}

.footer-actions .btn-secondary:hover {
    background: var(--bg-light);
}

.contact-note {
    margin-top: 2rem;
    opacity: 0.9;
}

.contact-note a {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Links Page Responsive */
@media (max-width: 768px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .edu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-section .social-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .involvement-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .links-intro h2 {
        font-size: 2rem;
    }
    
    .featured-resources h2,
    .resources-section h2,
    .educational-section h2,
    .social-section h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .links-intro,
    .resources-section,
    .social-section,
    .links-footer {
        padding: 1.5rem;
    }
    
    .edu-grid,
    .social-links,
    .involvement-steps {
        grid-template-columns: 1fr;
    }
    
    .resource-card,
    .edu-card {
        padding: 1.5rem;
    }
    
    .links-intro h2 {
        font-size: 1.75rem;
    }
    
    .footer-actions {
        flex-direction: column;
    }
    
    .footer-actions .btn {
        width: 100%;
    }
}

/* ================================
   FAQ PAGE STYLES
   ================================ */

.faq-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    line-height: 1.8;
}

.faq-intro strong {
    display: block;
    margin-top: 1rem;
    color: var(--primary-color);
}

.faq-section {
    max-width: 900px;
    margin: 2rem auto;
}

.faq-item {
    background: white;
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.faq-item p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

.faq-item strong {
    color: var(--secondary-color);
}

.faq-footer {
    background: var(--bg-gradient);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.faq-footer h2 {
    color: white;
    margin-top: 0;
    font-size: 2.2rem;
}

.faq-footer p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* FAQ Category Headers */
.content h2 {
    position: relative;
    padding-bottom: 0.75rem;
}

.content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-footer {
        padding: 2rem;
    }
    
    .faq-actions {
        flex-direction: column;
    }
    
    .faq-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .faq-intro,
    .faq-footer {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
}

/* ================================
   POLICY PAGE STYLES
   ================================ */

.policy-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    line-height: 1.8;
}

.policy-footer {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 3rem;
}

.policy-footer strong {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--primary-color);
}

/* ================================
   TEAM PAGE STYLES
   ================================ */

.team-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.team-member {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    margin-bottom: 1.5rem;
}

.team-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.team-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.team-info strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

.team-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.expertise-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.expertise-card h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Background Section */
.background-section {
    background: var(--bg-light);
    padding: 2rem 3rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.background-section ul {
    list-style: none;
    padding: 0;
}

.background-section ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.background-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Commitment Grid */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.commitment-card {
    background: var(--bg-gradient);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.commitment-card h3 {
    margin-top: 0;
    color: white;
    font-size: 1.3rem;
}

/* Join Section */
.join-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.volunteer-roles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.volunteer-roles p,
.volunteer-roles li {
    font-size: 1.1rem;
    line-height: 1.8;
}

.join-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Team Footer */
.team-footer {
    text-align: center;
    padding: 2rem;
    background: var(--bg-gradient);
    color: white;
    border-radius: 12px;
    margin-top: 3rem;
}

.team-footer strong {
    color: var(--secondary-color);
}

/* Responsive Design for Team Page */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .volunteer-roles {
        grid-template-columns: 1fr;
    }
    
    .join-cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .team-photo img {
        width: 150px;
        height: 150px;
    }
    
    .expertise-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .team-intro,
    .background-section,
    .join-section {
        padding: 1.5rem;
    }
}

/* ============================================
   INFLUENCER OPINIONS PAGE
   ============================================ */

/* Introduction Section */
.influencer-intro {
    text-align: center;
    padding: 3rem 0;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.influencer-intro h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Disclaimer Box */
.disclaimer-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.disclaimer-box h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Opinion Quote */
.opinion-quote {
    background: var(--bg-light);
    border-left: 5px solid var(--secondary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.opinion-quote.anti {
    border-left-color: #ef4444;
}

.opinion-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin: 0;
}

/* Opinions Section */
.opinions-section {
    margin: 3rem 0;
}

.opinions-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Supporters Grid */
.supporters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    align-items: stretch;
}

.supporter-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.supporter-card h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    flex-shrink: 0;
}

.supporter-card p,
.supporter-card strong {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.supporter-card strong {
    color: var(--primary-color);
    display: block;
    margin-top: 1rem;
}

.supporter-card a {
    color: var(--secondary-color);
    text-decoration: none;
}

.supporter-card a:hover {
    text-decoration: underline;
}

/* Opponents Section */
.opponents-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.opponents-section h2 {
    color: #dc2626;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Opponents Grid */
.opponents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    align-items: stretch;
}

.opponent-card {
    background: white;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.opponent-card h3 {
    color: #dc2626;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #fecaca;
    flex-shrink: 0;
}

.opponent-card p,
.opponent-card strong {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.opponent-card strong {
    color: var(--primary-color);
    display: block;
    margin-top: 1rem;
}

.opponent-card a {
    color: #dc2626;
    text-decoration: none;
}

.opponent-card a:hover {
    text-decoration: underline;
}

/* Correction Notice */
.correction-notice {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.correction-notice h3 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

/* Update CTA */
.update-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-gradient);
    color: white;
    border-radius: 12px;
    margin: 3rem 0;
}

.update-cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.update-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Footer */
.page-footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design for Influencer Opinions Page */
@media (max-width: 768px) {
    .supporters-grid,
    .opponents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .influencer-intro,
    .disclaimer-box,
    .update-cta {
        padding: 1.5rem;
    }
    
    .influencer-intro h1 {
        font-size: 1.75rem;
    }
    
    .opinions-section h2,
    .opponents-section h2,
    .update-cta h2 {
        font-size: 1.5rem;
    }
    
    .supporter-card,
    .opponent-card {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .influencer-intro h1 {
        font-size: 1.5rem;
    }
    
    .opinion-quote {
        padding: 1rem 1.5rem;
    }
    
    .opinion-quote p {
        font-size: 1rem;
    }
}

/* ============================================
   NUCLEAR POWER INFORMATION PAGE
   ============================================ */

/* Introduction */
.nuclear-info-intro {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* Info Resources Section */
.info-resources-section {
    margin: 3rem 0;
}

.info-resources-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.info-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    align-items: stretch;
}

.info-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-card.featured {
    border-color: var(--secondary-color);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.info-card .btn {
    margin-top: auto;
    align-self: center;
    flex-shrink: 0;
}

/* Policy Research Section */
.policy-research-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--bg-light);
    border-radius: 12px;
}

.policy-research-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    align-items: stretch;
}

.policy-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.policy-header {
    margin-bottom: 1rem;
}

.policy-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.policy-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.policy-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    margin-top: auto;
    display: block;
    flex-shrink: 0;
}

.policy-card a:hover {
    color: var(--secondary-dark);
    text-decoration: underline;
}

/* IAEA Section */
.iaea-section {
    margin: 4rem 0;
}

.iaea-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.iaea-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.iaea-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.iaea-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.iaea-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.iaea-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.iaea-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.iaea-card p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.resource-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.resource-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.iaea-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
    flex-shrink: 0;
}

/* Learning CTA */
.learning-cta {
    background: var(--bg-gradient);
    color: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    margin: 4rem 0;
    text-align: center;
}

.learning-cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.learning-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.learning-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Nuclear Power Page */
@media (max-width: 768px) {
    .info-resources-grid,
    .iaea-resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .policy-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .nuclear-info-intro {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .info-card,
    .iaea-card {
        padding: 2rem;
    }
    
    .learning-cta {
        padding: 3rem 1.5rem;
    }
    
    .learning-actions {
        flex-direction: column;
    }
    
    .learning-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .info-icon,
    .iaea-icon {
        font-size: 2.5rem;
    }
    
    .info-card h3,
    .iaea-card h3,
    .policy-card h3 {
        font-size: 1.2rem;
    }
    
    .learning-cta h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   SMALL MODULAR REACTORS PAGE
   ============================================ */

/* Introduction */
.smr-intro {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-radius: 12px;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.8;
    border: 1px solid var(--border-color);
}

/* SMR Info Section */
.smr-info-section {
    margin: 3rem 0;
}

.smr-info-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.smr-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.smr-info-card {
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.smr-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: var(--bg-light);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.smr-info-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.smr-info-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.smr-info-card .btn {
    margin-top: auto;
    align-self: center;
    flex-shrink: 0;
}

/* Resources Section */
.resources-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.resources-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.resource-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-header {
    margin-bottom: 1rem;
}

.resource-badge {
    display: inline-block;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.resource-badge.iaea {
    background: #0891b2;
}

.resource-badge.oecd {
    background: #059669;
}

.resource-badge.us {
    background: #2563eb;
}

.resource-badge.canada {
    background: #dc2626;
}

.resource-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.resource-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    margin-top: auto;
    display: block;
    flex-shrink: 0;
}

.resource-item a:hover {
    color: var(--secondary-dark);
    text-decoration: underline;
}

/* Designs Section */
.designs-section {
    margin: 4rem 0;
}

.designs-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.designs-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.designs-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.designs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.design-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.design-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.design-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.company-logo {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.design-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.design-origin {
    display: inline-block;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.design-details {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.design-details p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.design-details strong {
    color: var(--secondary-color);
}

.design-card .btn {
    margin-top: auto;
    align-self: flex-start;
    flex-shrink: 0;
}

/* Why SMRs Section */
.why-smrs-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--bg-gradient);
    color: white;
    border-radius: 12px;
}

.why-smrs-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

/* Explore CTA */
.explore-cta {
    margin: 4rem 0;
    text-align: center;
}

.explore-cta h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

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

.cta-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.cta-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.cta-card p {
    color: var(--text-light);
    margin: 0;
    flex-grow: 1;
}

.cta-card .btn {
    margin-top: 1.5rem;
    width: 100%;
}

/* Responsive Design for SMR Page */
@media (max-width: 768px) {
    .smr-info-grid,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .resources-grid,
    .designs-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .smr-intro {
        padding: 2rem;
        font-size: 1rem;
    }
    
    .resources-section,
    .why-smrs-section {
        padding: 2rem;
    }
    
    .design-card,
    .resource-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .card-icon,
    .company-logo,
    .benefit-icon,
    .cta-icon {
        font-size: 2.5rem;
    }
    
    .smr-info-card h3,
    .design-header h3,
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .designs-intro {
        padding: 0 1rem;
    }
}

/* ============================================
   VIDEOS & EDUCATIONAL RESOURCES PAGE
   ============================================ */

/* Introduction */
.videos-intro {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* Videos Section */
.videos-section {
    margin: 3rem 0;
}

.videos-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.video-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.video-thumbnail {
    background: #000;
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

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

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

.video-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.video-content .btn {
    margin-top: auto;
    align-self: flex-start;
    flex-shrink: 0;
}

/* Archive Section */
.archive-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
}

.archive-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.archive-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.archive-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.archive-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.archive-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}

.archive-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-right: 5rem;
}

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

.archive-card .btn {
    margin-top: auto;
    align-self: flex-start;
    flex-shrink: 0;
}

/* General Videos Section */
.general-videos-section {
    margin: 4rem 0;
}

.general-videos-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.general-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.featured-video-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.featured-video-card .video-thumbnail {
    background: #000;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.featured-video-card .video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.featured-video-card .video-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-video-card .video-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.featured-video-card .video-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.featured-video-card .video-content strong {
    color: var(--secondary-color);
}

.featured-video-card .video-content .btn {
    margin-top: auto;
    align-self: flex-start;
    flex-shrink: 0;
}

/* Subscribe CTA */
.subscribe-cta {
    margin: 4rem 0;
    padding: 4rem 2rem;
    background: var(--bg-gradient);
    color: white;
    border-radius: 12px;
    text-align: center;
}

.subscribe-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subscribe-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.subscribe-content .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Responsive Design for Videos Page */
@media (max-width: 768px) {
    .videos-grid,
    .archive-grid {
        grid-template-columns: 1fr;
    }
    
    .general-videos-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-intro {
        padding: 2rem;
        font-size: 1rem;
    }
    
    .archive-section,
    .subscribe-cta {
        padding: 2rem;
    }
    
    .video-content,
    .archive-card {
        padding: 1.5rem;
    }
    
    .archive-year {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .archive-card h3 {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .video-content h3,
    .archive-card h3,
    .featured-video-card .video-content h3 {
        font-size: 1.2rem;
    }
    
    .subscribe-content h3 {
        font-size: 1.5rem;
    }
    
    .subscribe-content p {
        font-size: 1rem;
    }
}

/* ============================================
   FUN STUFF - GAMES & SIMULATORS PAGE
   ============================================ */

/* Introduction */
.fun-stuff-intro {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.8;
}

.fun-stuff-intro a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.fun-stuff-intro a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Simulators Section */
.simulators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem 0;
    align-items: stretch;
}

.simulator-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.simulator-image {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.simulator-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.simulator-provider {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem !important;
}

.simulator-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.simulator-content ul {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    flex-grow: 1;
}

.simulator-content ul li {
    margin-bottom: 0.5rem;
}

.simulator-content .btn {
    margin-top: auto;
    align-self: flex-start;
    flex-shrink: 0;
}

/* Games Section */
.games-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.game-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.game-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.game-card .btn {
    margin-top: auto;
    align-self: center;
    flex-shrink: 0;
}

/* Learning Resources Section */
.learning-resources {
    margin: 3rem 0;
}

.resource-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s;
}

.resource-card.featured {
    background: var(--bg-gradient);
    color: white;
    border-color: var(--secondary-color);
}

.resource-card.featured h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.resource-card.featured p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Disclaimer Section */
.disclaimer-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
}

.disclaimer-section p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Fun Stuff Page */
@media (max-width: 768px) {
    .simulators-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .fun-stuff-intro,
    .games-section {
        padding: 2rem;
    }
    
    .simulator-content,
    .game-card,
    .resource-card {
        padding: 1.5rem;
    }
    
    .simulator-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .simulator-content h3,
    .game-card h3 {
        font-size: 1.2rem;
    }
    
    .resource-card.featured h3 {
        font-size: 1.4rem;
    }
    
    .resource-card.featured p {
        font-size: 1rem;
    }
    
    .game-icon {
        font-size: 2.5rem;
    }
    
    .fun-stuff-intro {
        font-size: 1rem;
        padding: 1.5rem;
    }
}

