/* ===================================
   Balkan Scholars Foundation
   Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    /* Primary Blue Palette */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;

    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Accent Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Sponsor Colors */
    --platinum: #e5e4e2;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;

    /* Typography */
    --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 5rem;
    --card-padding: 2rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-600);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-700);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.lead {
    font-size: 1.25rem;
    color: var(--gray-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-600);
    color: #fff;
    border-color: var(--primary-600);
}

.btn-primary:hover {
    background-color: var(--primary-700);
    border-color: var(--primary-700);
    color: #fff;
}

.btn-secondary {
    background-color: var(--gray-100);
    color: var(--gray-700);
    border-color: var(--gray-200);
}

.btn-secondary:hover {
    background-color: var(--gray-200);
    color: var(--gray-800);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-600);
    border-color: var(--primary-600);
}

.btn-outline:hover {
    background-color: var(--primary-600);
    color: #fff;
}

.btn-white {
    background-color: #fff;
    color: var(--primary-600);
    border-color: #fff;
}

.btn-white:hover {
    background-color: var(--primary-50);
    color: var(--primary-700);
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: var(--primary-600);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo:hover {
    color: var(--primary-600);
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a {
    padding: 0.5rem 1rem;
    color: var(--gray-600);
    font-weight: 500;
    border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-600);
    background-color: var(--primary-50);
}

.nav-links .btn {
    margin-left: 0.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-900) 100%);
    margin-top: 70px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-900) 100%);
    padding: 6rem 0 4rem;
    margin-top: 70px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.25rem;
}

/* Sections */
.section {
    padding: var(--section-padding) 0;
}

.bg-light {
    background-color: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header p {
    margin-top: 1rem;
    color: var(--gray-600);
}

.section-tag {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-800);
    padding: 4rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    color: #fff;
}

.stat-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Mission Preview */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content .section-tag {
    margin-bottom: 1rem;
}

.mission-content h2 {
    margin-bottom: 1.5rem;
}

.mission-content p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.mission-content .btn {
    margin-top: 1rem;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--primary-600);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder span {
    font-weight: 600;
}

.image-placeholder.large {
    min-height: 400px;
}

.image-placeholder.small {
    min-height: 100px;
    padding: 2rem;
}

.image-placeholder.small i {
    font-size: 2rem;
    margin-bottom: 0;
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-card {
    background: #fff;
    padding: var(--card-padding);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 1.5rem;
    color: var(--primary-600);
}

.program-card h3 {
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-600);
}

.link-arrow:hover {
    gap: 0.75rem;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: var(--card-padding);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-size: 4rem;
    color: var(--primary-200);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    position: relative;
    color: var(--gray-600);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
}

.author-info strong {
    display: block;
    color: var(--gray-900);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    padding: 5rem 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about .logo {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-600);
    color: #fff;
}

.social-links.large a {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: var(--primary-400);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .lead {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: var(--card-padding);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.value-card.featured {
    grid-column: span 3;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    color: #fff;
}

.value-card.featured h3,
.value-card.featured p {
    color: #fff;
}

.value-card.featured .value-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.75rem;
    color: var(--primary-600);
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-600);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-200);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 6px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--primary-600);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-700);
}

.timeline-content p {
    color: var(--gray-600);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-600);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Allocation */
.allocation-grid {
    max-width: 600px;
    margin: 0 auto;
}

.allocation-item {
    margin-bottom: 2rem;
}

.allocation-bar {
    height: 40px;
    background: var(--primary-600);
    border-radius: var(--radius);
    width: var(--percentage);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
}

.allocation-bar .percentage {
    color: #fff;
    font-weight: 700;
}

.allocation-item h4 {
    margin-bottom: 0.25rem;
}

.allocation-item p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Team Page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-photo {
    padding: 2rem 2rem 0;
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.photo-placeholder i {
    font-size: 4rem;
    color: var(--primary-300);
}

.photo-placeholder.small {
    width: 80px;
    height: 80px;
}

.photo-placeholder.small i {
    font-size: 2rem;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary-600);
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.team-info p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.team-social a:hover {
    background: var(--primary-600);
    color: #fff;
}

/* Advisors */
.advisors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.advisor-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.advisor-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.advisor-info span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Join Section */
.join-section {
    text-align: center;
}

.join-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.join-option {
    padding: 1.5rem;
}

.join-option i {
    font-size: 2rem;
    color: var(--primary-600);
    margin-bottom: 1rem;
}

.join-option h4 {
    margin-bottom: 0.5rem;
}

.join-option p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Scholarships Page */
.scholarship-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-card {
    background: var(--primary-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-600);
}

.highlight-card i {
    color: var(--primary-600);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.highlight-card h4 {
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: var(--gray-600);
    margin: 0;
}

/* Scholarship Cards */
.scholarship-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    overflow: hidden;
}

.scholarship-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.scholarship-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-600);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scholarship-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.scholarship-title h3 {
    margin-bottom: 0.25rem;
}

.scholarship-amount {
    color: var(--primary-600);
    font-weight: 600;
}

.scholarship-body {
    padding: 2rem;
}

.scholarship-description {
    margin-bottom: 1.5rem;
}

.scholarship-description p {
    color: var(--gray-600);
}

.scholarship-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-column h4 {
    margin-bottom: 1rem;
    color: var(--primary-700);
}

.detail-column ul {
    list-style: none;
}

.detail-column li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-600);
}

.detail-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Process Steps */
.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-600);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-600);
}

.apply-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-note {
    margin-top: 1rem;
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.document-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.document-card i {
    font-size: 2rem;
    color: var(--primary-600);
    margin-bottom: 1rem;
}

.document-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.document-card p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    color: var(--primary-600);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-600);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Impact Page */
.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.impact-stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.impact-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-stat-card .stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-600);
}

.stat-content .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-content .stat-label {
    font-weight: 600;
    color: var(--gray-700);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Fundraising Card */
.fundraising-card {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.fundraising-header h3 {
    margin-bottom: 0.5rem;
}

.fundraising-header p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.progress-bar-container {
    height: 30px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-bar {
    height: 100%;
    width: var(--progress);
    background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    transition: width 1s ease;
}

.progress-text {
    color: #fff;
    font-weight: 700;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.progress-stat .amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.progress-stat .label {
    color: var(--gray-500);
}

.fundraising-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.fundraising-details .detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
}

.fundraising-details i {
    color: var(--primary-600);
}

/* Map Container */
.map-container {
    margin-bottom: 2rem;
}

#impact-map {
    height: 450px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.legend-marker.high { background: var(--primary-700); }
.legend-marker.medium { background: var(--primary-500); }
.legend-marker.low { background: var(--primary-300); }

/* Country Stats */
.country-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.country-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.country-flag {
    font-size: 2rem;
}

.country-info {
    flex: 1;
}

.country-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.country-bar {
    height: 24px;
    background: var(--primary-600);
    border-radius: var(--radius-sm);
    width: var(--width);
    display: flex;
    align-items: center;
    padding-left: 0.75rem;
}

.country-bar span {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Stories Grid */
.stories-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-card:nth-child(even) {
    direction: rtl;
}

.story-card:nth-child(even) > * {
    direction: ltr;
}

.story-image .image-placeholder {
    height: 100%;
    min-height: 300px;
    border-radius: 0;
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    margin-bottom: 0.5rem;
}

.story-meta {
    color: var(--primary-600);
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.story-content blockquote {
    background: var(--primary-50);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-600);
    border-radius: var(--radius);
    font-style: italic;
    color: var(--primary-800);
    margin: 1rem 0;
}

/* Annual Report */
.annual-report {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.report-highlights {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.report-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.report-highlight i {
    color: var(--primary-600);
}

.report-placeholder {
    background: var(--gray-100);
    padding: 4rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.report-placeholder i {
    font-size: 4rem;
    color: var(--primary-400);
    margin-bottom: 1rem;
}

.report-placeholder span {
    display: block;
    font-weight: 600;
    color: var(--gray-600);
}

/* Donate Page */
.donate-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.donation-tiers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.donation-tier {
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.donation-tier:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-lg);
}

.donation-tier.featured {
    border-color: var(--primary-600);
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-600);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.tier-header {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1rem;
}

.tier-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-600);
}

.tier-name {
    color: var(--gray-500);
    font-weight: 500;
}

.tier-body {
    margin-bottom: 1.5rem;
}

.tier-body p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.tier-body ul {
    text-align: left;
}

.tier-body li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.tier-body li i {
    color: var(--success);
    margin-right: 0.5rem;
}

/* Payment Options */
.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.payment-option {
    display: block;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.payment-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.payment-icon i {
    font-size: 2rem;
    color: #fff;
}

.payment-icon.paypal { background: #003087; }
.payment-icon.gofundme { background: #00b964; }
.payment-icon.venmo { background: #3d95ce; }
.payment-icon.zelle { background: #6d1ed4; }
.payment-icon.check { background: var(--gray-600); }
.payment-icon.wire { background: var(--primary-600); }

.payment-option h3 {
    margin-bottom: 0.5rem;
}

.payment-option p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.payment-link {
    color: var(--primary-600);
    font-weight: 500;
}

/* Monthly Giving */
.monthly-giving {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.monthly-benefits {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.monthly-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
}

.monthly-benefits i {
    color: var(--success);
}

.monthly-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.monthly-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-200);
    background: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.monthly-btn:hover,
.monthly-btn.active {
    border-color: var(--primary-600);
    background: var(--primary-50);
    color: var(--primary-700);
}

.impact-preview {
    background: var(--primary-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.impact-preview h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.impact-calculation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.calc-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-600);
}

.calc-amount span {
    font-size: 1rem;
    color: var(--gray-500);
}

.calc-equals {
    font-size: 1.5rem;
    color: var(--gray-400);
}

.calc-result strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-700);
    margin-bottom: 0.5rem;
}

.calc-result p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Other Giving Options */
.other-giving-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.giving-option {
    text-align: center;
    padding: 2rem 1.5rem;
}

.giving-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.giving-icon i {
    font-size: 1.75rem;
    color: var(--primary-600);
}

.giving-option h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.giving-option p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Allocation Visual */
.allocation-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.allocation-chart {
    display: flex;
    justify-content: center;
}

.chart-ring {
    width: 250px;
    height: 250px;
}

.chart-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 3;
}

.circle-fill {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.circle-fill.scholarships { stroke: var(--primary-600); }
.circle-fill.programs { stroke: var(--primary-400); }
.circle-fill.operations { stroke: var(--primary-200); }

.allocation-legend .legend-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.legend-color.scholarships { background: var(--primary-600); }
.legend-color.programs { background: var(--primary-400); }
.legend-color.operations { background: var(--primary-200); }

.legend-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.legend-text p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Tax Info */
.tax-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

.tax-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tax-icon i {
    font-size: 2rem;
    color: #fff;
}

.tax-content h3 {
    margin-bottom: 0.5rem;
}

.tax-content p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

/* Sponsors Page */
.sponsor-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.section-tag.platinum { background: linear-gradient(135deg, #e5e4e2, #b8b8b8); color: #333; }
.section-tag.gold { background: linear-gradient(135deg, #ffd700, #ffb700); color: #333; }
.section-tag.silver { background: linear-gradient(135deg, #c0c0c0, #a0a0a0); color: #333; }
.section-tag.bronze { background: linear-gradient(135deg, #cd7f32, #b87333); color: #fff; }

.sponsors-grid {
    display: grid;
    gap: 2rem;
}

.sponsors-grid.platinum {
    grid-template-columns: repeat(2, 1fr);
}

.sponsors-grid.gold {
    grid-template-columns: repeat(3, 1fr);
}

.sponsors-grid.silver {
    grid-template-columns: repeat(4, 1fr);
}

.sponsor-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.sponsor-card.small {
    padding: 1.5rem;
}

.sponsor-logo {
    margin-bottom: 1rem;
}

.sponsor-card h3 {
    margin-bottom: 0.5rem;
}

.sponsor-card h4 {
    margin-bottom: 0;
}

.sponsor-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.logo-placeholder {
    background: var(--gray-100);
    width: 150px;
    height: 100px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--gray-400);
}

.logo-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.logo-placeholder span {
    font-size: 0.75rem;
}

.logo-placeholder.small {
    width: 100px;
    height: 60px;
}

.logo-placeholder.small i {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.logo-placeholder.small span {
    display: none;
}

/* Sponsors List */
.sponsors-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.sponsor-name {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Become Sponsor */
.become-sponsor {
    text-align: center;
    margin-bottom: 3rem;
}

.sponsorship-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tier-card {
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.tier-card.platinum { border-color: #e5e4e2; }
.tier-card.gold { border-color: #ffd700; }
.tier-card.silver { border-color: #c0c0c0; }
.tier-card.bronze { border-color: #cd7f32; }

.tier-card .tier-header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1.5rem;
}

.tier-card .tier-badge {
    position: static;
    transform: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.tier-card.platinum .tier-badge { background: linear-gradient(135deg, #e5e4e2, #b8b8b8); color: #333; }
.tier-card.gold .tier-badge { background: linear-gradient(135deg, #ffd700, #ffb700); color: #333; }
.tier-card.silver .tier-badge { background: linear-gradient(135deg, #c0c0c0, #a0a0a0); color: #333; }
.tier-card.bronze .tier-badge { background: linear-gradient(135deg, #cd7f32, #b87333); color: #fff; }

.tier-card .tier-amount {
    font-size: 1.5rem;
}

.tier-benefits {
    text-align: left;
    margin-bottom: 1.5rem;
}

.tier-benefits li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.tier-benefits li i {
    color: var(--success);
    margin-right: 0.5rem;
}

/* Custom Partnership */
.custom-partnership {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.partnership-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.partnership-option {
    padding: 1.5rem;
}

.partnership-option i {
    font-size: 2rem;
    color: var(--primary-600);
    margin-bottom: 1rem;
}

.partnership-option h4 {
    margin-bottom: 0.5rem;
}

.partnership-option p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    margin-bottom: 0.5rem;
}

.contact-form-container > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--gray-600);
}

/* Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.contact-info-card h3 {
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
}

.method-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.25rem;
    color: var(--primary-600);
}

.method-details h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.method-details p {
    margin: 0;
}

.method-details .small {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.office-address {
    display: flex;
    gap: 1rem;
}

.office-address i {
    color: var(--primary-600);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.office-address p {
    margin: 0;
    line-height: 1.6;
}

/* Quick Links */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.quick-link-card {
    display: block;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.quick-link-card i {
    font-size: 2rem;
    color: var(--primary-600);
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.quick-link-card p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Newsletter */
.newsletter-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--primary-50);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--gray-600);
}

.newsletter-input {
    display: flex;
    gap: 1rem;
}

.newsletter-input input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
}

.newsletter-input input:focus {
    outline: none;
    border-color: var(--primary-400);
}

.newsletter-note {
    margin-top: 1rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-card.featured {
        grid-column: span 2;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advisors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scholarship-intro {
        grid-template-columns: 1fr;
    }

    .scholarship-details {
        grid-template-columns: 1fr;
    }

    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .country-stats-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        grid-template-columns: 1fr;
    }

    .story-card:nth-child(even) {
        direction: ltr;
    }

    .annual-report {
        grid-template-columns: 1fr;
    }

    .donation-tiers {
        grid-template-columns: repeat(3, 1fr);
    }

    .donation-tier.featured {
        transform: none;
    }

    .payment-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .monthly-giving {
        grid-template-columns: 1fr;
    }

    .other-giving-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .allocation-visual {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sponsorship-tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    .partnership-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .section {
        padding: 3rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
    }

    .nav-links .btn {
        margin: 1rem 0 0;
        width: 100%;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .programs-grid,
    .testimonials-grid,
    .values-grid,
    .features-grid,
    .team-grid,
    .advisors-grid {
        grid-template-columns: 1fr;
    }

    .value-card.featured {
        grid-column: span 1;
    }

    .join-options {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        padding-left: 0;
    }

    .timeline-marker {
        position: static;
        margin: 0 auto 1rem;
    }

    .impact-stats-grid {
        grid-template-columns: 1fr;
    }

    .impact-stat-card {
        flex-direction: column;
        text-align: center;
    }

    .donation-tiers {
        grid-template-columns: 1fr;
    }

    .payment-options-grid {
        grid-template-columns: 1fr;
    }

    .monthly-options {
        flex-wrap: wrap;
    }

    .monthly-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .impact-calculation {
        flex-direction: column;
    }

    .other-giving-grid {
        grid-template-columns: 1fr;
    }

    .sponsors-grid.platinum,
    .sponsors-grid.gold,
    .sponsors-grid.silver {
        grid-template-columns: 1fr;
    }

    .sponsorship-tiers {
        grid-template-columns: 1fr;
    }

    .partnership-options {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-input {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about .logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .navbar,
    .cta-section,
    .footer {
        display: none;
    }

    .page-header {
        margin-top: 0;
    }

    body {
        font-size: 12pt;
    }
}
