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

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--warm-cream);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

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

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(220, 38, 38, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

:root {
    --primary-color: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #ef4444;
    --red-accent: #fee2e2;
    --red-light: #fef2f2;
    --warm-cream: #fef9f5;
    --warm-gray: #f5f1ed;
    --secondary-color: #1a1a1a;
    --accent-color: #2d2d2d;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6b7280;
    --bg-light: #fef9f5;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(220, 38, 38, 0.1);
    --shadow-md: 0 4px 16px rgba(220, 38, 38, 0.15);
    --shadow-lg: 0 8px 32px rgba(220, 38, 38, 0.2);
    --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-premium: 0 10px 40px rgba(220, 38, 38, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --focus-ring: 0 0 0 3px rgba(220, 38, 38, 0.3);
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: -0.01em;
    background: var(--warm-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--warm-cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
    border-radius: 6px;
    border: 2px solid var(--warm-cream);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark), var(--primary-color));
}

/* Improved contrast for accessibility */
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
}

p, li {
    color: var(--text-secondary);
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 4px 16px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo img {
    height: 45px;
    width: auto;
    display: block;
    transition: var(--transition);
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    letter-spacing: -0.01em;
    padding: 0.5rem 0;
}

.nav-links a:focus {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: 4px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-brand .logo {
    height: 160px;
    width: auto;
    display: block;
    transition: var(--transition);
    animation: fadeIn 0.8s ease;
}

.nav-brand .logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    letter-spacing: -0.01em;
    padding: 0.5rem 0;
}

.nav-menu a:focus {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: 4px;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-brand a {
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: white;
    padding: 120px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 1;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(185, 28, 28, 0.06) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.stat-item:hover .stat-number {
    color: var(--primary-dark);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: white;
    padding: 70px 0 50px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
    animation: slideInLeft 1s ease 0.2s backwards;
}

.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    aspect-ratio: 4/3;
    min-height: 320px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInRight 1s ease 0.3s backwards;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 0.8s ease;
    line-height: 1.1;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    opacity: 0.98;
    animation: fadeInUp 0.8s ease 0.2s both;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #991b1b 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.btn-primary:focus {
    outline: none;
    box-shadow: var(--focus-ring), 0 8px 24px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-secondary:focus {
    outline: none;
    box-shadow: var(--focus-ring);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-outline:focus {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Accessibility improvements */
a:focus,
button:focus {
    outline: none;
    box-shadow: var(--focus-ring);
}

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Mission Section */
.mission {
    background: var(--bg-white);
    padding: 100px 0;
}

.mission-statement {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1.5rem;
    line-height: 1.5;
    font-family: 'Playfair Display', serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 3.5rem;
}

.mission-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-box {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.6s ease backwards;
    position: relative;
    overflow: hidden;
}

.highlight-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.highlight-box:hover::after {
    width: 300px;
    height: 300px;
}

.highlight-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 40px rgba(220, 38, 38, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(220, 38, 38, 0.3);
}

.highlight-icon {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.highlight-box h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.highlight-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* What We Do Section */
.what-we-do {
    background: var(--warm-cream);
    padding: 100px 0;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.6s ease backwards;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(220, 38, 38, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(220, 38, 38, 0.2);
}

.feature-icon {
    display: none;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Vision Section */
.vision {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: white;
    padding: 100px 0;
    position: relative;
}

.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.vision-content {
    position: relative;
    z-index: 1;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: white;
    letter-spacing: -0.03em;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vision-text {
    font-size: 1.25rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: white;
    opacity: 1;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(185, 28, 28, 0.08) 100%);
    padding: 100px 0;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.btn-lg {
    padding: 18px 42px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

/* Get Involved Page Sections */
.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.involvement-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.involvement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(220, 38, 38, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(220, 38, 38, 0.3);
}

.involvement-card h3 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}

.involvement-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.card-buttons .btn {
    width: auto;
    min-width: 180px;
}

.subscribe-section, .contribute-section {
    margin-top: 4rem;
    padding-top: 4rem;
}

.subscribe-section h2, .contribute-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-family: 'Playfair Display', serif;
}

.subscribe-section p, .contribute-section p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
}

.subscribe-section .btn, .contribute-section .btn {
    margin-top: 1rem;
}

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

.contact-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    animation: fadeInUp 0.6s ease backwards;
}

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

.contact-card h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: white;
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-footer {
    height: 120px;
    width: auto;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
}

/* Page Content Styles */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Newsletter Page Styles */
.newsletter-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: var(--transition-smooth);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.12);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.newsletter-features {
    margin: 5rem 0;
}

.newsletter-features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    align-items: flex-start;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(220, 38, 38, 0.15);
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
    opacity: 0.3;
    line-height: 1;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.latest-issue-section {
    margin: 5rem 0;
}

.latest-issue-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.latest-issue-card {
    background: var(--bg-white);
    border-radius: 24px;
    border: 1px solid rgba(220, 38, 38, 0.15);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.12);
}

.issue-header {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: white;
    padding: 3rem;
    position: relative;
}

.issue-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.issue-header h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: white;
}

.issue-date {
    font-size: 1.1rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.issue-content {
    padding: 3rem;
}

.issue-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.issue-highlights {
    list-style: none;
    margin-bottom: 2.5rem;
}

.issue-highlights li {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    padding-left: 1.5rem;
}

.issue-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

.issue-highlights li:last-child {
    border-bottom: none;
}

.issue-highlights li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.issue-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-cta-section {
    margin: 5rem 0;
}

.cta-box {
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contribute-box {
    margin: 5rem 0;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(185, 28, 28, 0.05) 100%);
    border-radius: 24px;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.contribute-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.contribute-box > p {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

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

.contribute-item {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.contribute-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(220, 38, 38, 0.15);
}

.contribute-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.contribute-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contribute-box .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Newsletter Article Page */
.newsletter-header {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: white;
    padding: 80px 0 60px;
    margin-top: 0;
}

.newsletter-header-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-header h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: white;
}

.newsletter-article {
    background: var(--bg-white);
    padding: 60px 0;
}

.newsletter-body {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-section {
    margin-bottom: 5rem;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

.newsletter-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.newsletter-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pillar {
    padding: 2rem;
    background: var(--warm-cream);
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.pillar h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.pillar p {
    font-size: 1rem;
    margin-bottom: 0;
}

.platform-features {
    margin: 3rem 0;
}

.feature-highlight {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-highlight:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-highlight h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.feature-highlight p {
    margin-bottom: 0;
}

.newsletter-cta {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(185, 28, 28, 0.05) 100%);
    border-radius: 24px;
    margin: 5rem 0 3rem;
}

.newsletter-cta h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.newsletter-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===================================
   Projects Page Styles
   =================================== */

.active-projects-section {
    margin-bottom: 6rem;
}

.active-projects-section h2,
.all-projects-section h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.active-projects-section > p,
.all-projects-section > p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.active-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.active-project-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
}

.status-badge.ongoing {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

.status-badge.planning {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
}

.project-timeline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.active-project-card h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.project-lead {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.project-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, rgba(185, 28, 28, 0.03) 100%);
    border-radius: 12px;
}

.detail-item strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.detail-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-item ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
}

.detail-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.project-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.project-actions .btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
}

.all-projects-section {
    margin-bottom: 6rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .active-projects-grid {
        grid-template-columns: 1fr;
    }
}

.project-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

.card-header {
    margin-bottom: 1.5rem;
}

.project-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

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

.project-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.project-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.submit-project-section {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(185, 28, 28, 0.05) 100%);
    border-radius: 24px;
    margin-top: 4rem;
}

.submit-project-section h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.submit-project-section p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===================================
   Careers Page Styles
   =================================== */

.careers-search-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 3rem;
}

.search-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    font-size: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    transition: var(--transition-smooth);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.filter-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-select {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    background: white;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-select:hover {
    border-color: rgba(220, 38, 38, 0.3);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.careers-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.careers-results-header h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.results-count {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.careers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.career-item {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.career-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-premium);
    transform: translateY(-2px);
}

.career-item-content {
    flex: 1;
}

.career-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.career-item-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.career-badge {
    display: inline-block;
    padding: 0.35rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.career-badge.intern {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
}

.career-badge.fulltime {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

.career-badge.parttime {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.career-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-item svg {
    color: var(--primary-color);
}

.career-item-description {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.career-item-apply {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1rem;
    transition: var(--transition-smooth);
    padding: 0.875rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
}

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

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

.career-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.career-header {
    margin-bottom: 1.5rem;
}

.career-header h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.position-type {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.career-description {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.career-requirements {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.career-requirements strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.career-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-requirements ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
}

.career-requirements ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.career-card .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.general-application-section {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(185, 28, 28, 0.05) 100%);
    border-radius: 24px;
    margin-bottom: 4rem;
}

.general-application-section h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.general-application-section p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-join-section {
    margin-top: 4rem;
}

.why-join-section h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.benefit-item p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .careers-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .career-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .career-item-apply {
        width: 100%;
        text-align: center;
    }
    
    .careers-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .filter-container {
        grid-template-columns: 1fr;
    }
}

.back-link {
    text-align: center;
    margin: 3rem 0;
}

.back-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.back-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.page-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.page-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.page-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.page-content ul, .page-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.project-grid, .newsletter-grid, .research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card, .newsletter-card, .research-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.6s ease backwards;
    position: relative;
}

.project-card:hover, .newsletter-card:hover, .research-card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 16px 40px rgba(220, 38, 38, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
}

.project-card h3, .newsletter-card h3, .research-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.project-card p, .newsletter-card p, .research-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
}

.project-card a, .newsletter-card a, .research-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: var(--transition);
}

.project-card a:hover, .newsletter-card a:hover, .research-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.project-card a:focus, .newsletter-card a:focus, .research-card a:focus {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: 4px;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

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

/* Smooth Scrolling - Optimized */
html {
    scroll-behavior: auto;
}

html.smooth-scroll {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: no-preference) {
    html.smooth-scroll {
        scroll-behavior: smooth;
    }
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Improved contrast ratios */
.btn-primary {
    color: var(--primary-color);
    background: white;
    border: 2px solid white;
}

.btn-primary:hover,
.btn-primary:focus {
    background: rgba(255, 255, 255, 0.95);
}

/* Better focus indicators */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #1a1a1a;
        --primary-color: #b91c1c;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-brand .logo {
        height: 100px;
    }

    .footer-brand .logo-footer {
        height: 90px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .hero-image {
        min-height: 300px;
    }

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

    .mission-statement {
        font-size: 1.2rem;
    }

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

    .mission-highlights {
        grid-template-columns: 1fr;
    }

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

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .involvement-grid {
        grid-template-columns: 1fr;
    }
    
    .card-buttons .btn {
        width: 100%;
    }
    
    .newsletter-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
    }
    
    .issue-header {
        padding: 2rem;
    }
    
    .issue-header h3 {
        font-size: 2rem;
    }
    
    .issue-content {
        padding: 2rem;
    }
    
    .issue-actions {
        flex-direction: column;
    }
    
    .issue-actions .btn {
        width: 100%;
    }
    
    .cta-box {
        padding: 2.5rem 2rem;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .contribute-box {
        padding: 2.5rem 2rem;
    }
    
    .contribute-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 60px;
    }

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

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: white;
    padding: 120px 0 80px;
}

.page-hero .page-content h1 {
    color: white;
}

.page-hero .page-content p {
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.25rem;
    line-height: 1.9;
}

.page-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.page-section:nth-child(even) {
    background: var(--bg-light);
}

