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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #e74c3c;
    color: white;
    font-weight: 600;
    line-height: 43px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    background: #c0392b;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 2000;
}

.nav-container {
    max-width: 1163px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

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

.nav-logo img {
    height: 60px;
    width: auto;
    display: block;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.2rem;
}

.nav-menu a:hover {
    color: #e74c3c;
}

.donate-btn {
    background: #000 !important;
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.2rem !important;
}

.donate-btn:hover {
    background: #333 !important;
    transform: translateY(-1px);
}

.sponsor-btn {
    background: #e74c3c !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    margin-left: 1rem !important;
    transition: all 0.3s ease !important;
}

.sponsor-btn:hover {
    background: #c0392b !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Sponsors Section */
.sponsors-section {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.sponsors-section h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.sponsors-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 40px;
}

.sponsors-marquee img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsors-marquee img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .sponsors-section {
        padding: 15px 0;
    }
    
    .sponsors-marquee img {
        height: 35px;
    }
    
    .marquee-content {
        gap: 30px;
    }
}

/* Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 130px 20px 20px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    z-index: 0;
}

.hero-bg > div {
    background-size: cover;
    background-position: center;
}

.hero-bg > div:nth-child(1) {
    background-image: url('img/pics/Unknown-12.jpeg');
}
.hero-bg > div:nth-child(2) {
    background-image: url('img/pics/Unknown-15.jpeg');
}
.hero-bg > div:nth-child(3) {
    background-image: url('img/pics/Unknown-21.jpeg');
}
.hero-bg > div:nth-child(4) {
    background-image: url('img/pics/Unknown-27.jpeg');
}
.hero-bg > div:nth-child(5) {
    background-image: url('img/pics/Unknown-30.jpeg');
}
.hero-bg > div:nth-child(6) {
    background-image: url('img/pics/Unknown-33.jpeg');
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 1163px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffeaa7;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.hero-cta .btn {
    font-size: 1.5rem;
    padding: 1rem 2.5rem;
    min-width: 200px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-graphic i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.impact .section-header h2,
.impact .section-header p {
    color: white;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin: 0 auto;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #fff;
}

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Slideshow */
.slideshow {
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slides {
    position: relative;
    width: 100%;
    aspect-ratio: 16/16;
    background: #f8f9fa;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

/* Navigation Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Thumbnails */
.thumbnail-container {
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnails {
    display: flex;
    gap: 10px;
    padding: 0 10px;
}

.thumbnails img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnails img:hover,
.thumbnails img.active {
    opacity: 1;
    transform: scale(1.05);
}

/* Fade Animation */
.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* Mobile Responsive Gallery */
@media (max-width: 768px) {
    .thumbnails img {
        width: 80px;
        height: 50px;
    }
    
    .prev, .next {
        padding: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .thumbnails img {
        width: 60px;
        height: 40px;
    }
    
    .prev, .next {
        padding: 8px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    color: #e74c3c;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

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

.services-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #555;
}

.services-list i {
    color: #27ae60;
    margin-right: 12px;
    font-size: 1.1rem;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.about-card i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.about-card h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

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

.impact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.impact-icon i {
    font-size: 2rem;
    color: white;
}

.impact-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffeaa7;
}

.impact-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* Sponsorship Section */
.sponsorship {
    padding: 100px 0;
    background: #f8f9fa;
}

.sponsorship-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.sponsorship-intro h3 {
    color: #e74c3c;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.intro-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

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

.sponsorship-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsorship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.sponsorship-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.impact-list,
.funding-list,
.donation-methods {
    list-style: none;
    padding: 0;
}

.impact-list li,
.funding-list li,
.donation-methods li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.impact-list li::before,
.funding-list li::before,
.donation-methods li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1rem;
    width: 1.2rem;
    text-align: center;
}

.partners-list {
    font-weight: 500;
    color: #34495e;
}

.funding-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.funding-section h3 {
    color: #e74c3c;
    text-align: center;
    margin-bottom: 2rem;
}

.funding-goal {
    text-align: center;
}

.funding-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.funding-goal .funding-list {
    text-align: left;
}

.funding-goal h4 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.sponsorship-levels {
    margin-bottom: 4rem;
}

.sponsorship-levels h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

.level-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #e74c3c;
}

.level-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.level-card.legacy {
    border-top-color: #9b59b6;
    background: linear-gradient(135deg, #f8f9fa, #e8f4fd);
}

.level-card.pillar {
    border-top-color: #3498db;
    background: linear-gradient(135deg, #f8f9fa, #ebf7ff);
}

.level-card.hope {
    border-top-color: #e74c3c;
    background: linear-gradient(135deg, #f8f9fa, #fdf2f2);
}

.level-card.supporter {
    border-top-color: #f39c12;
    background: linear-gradient(135deg, #f8f9fa, #fffbf0);
}

.level-card.friend {
    border-top-color: #27ae60;
    background: linear-gradient(135deg, #f8f9fa, #f0fdf4);
}

.level-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
}

.recognition-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.recognition-section h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

.recognition-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.recognition-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    min-width: 30px;
}

.why-sponsorship {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    color: white;
}

.why-sponsorship h3 {
    color: white;
    margin-bottom: 2rem;
}

.stat-highlight {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-highlight p {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    margin-top: 0.5rem;
}

.stat-highlight .source {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    margin-top: 1rem;
    opacity: 0.8;
    font-style: italic;
}

.stat-highlight .source a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.stat-highlight .source a:hover {
    color: white;
    text-decoration: none;
}

.big-stat {
    font-size: 4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.why-sponsorship p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 500;
}

.sponsorship-contact {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-col h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.2rem;
    line-height: 1.4;
}

.contact-info a {
    color: #e74c3c;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.cta-section {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section .btn {
    flex: 1;
    min-width: 200px;
}

/* Needs Section */
.needs {
    padding: 100px 0;
    background: white;
}

.needs-content {
    margin-bottom: 3rem;
}

.needs-text {
    text-align: center;
    margin-bottom: 3rem;
}

.needs-text h3 {
    color: #e74c3c;
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.need-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.need-item:hover {
    border-color: #e74c3c;
    transform: translateY(-3px);
}

.need-item i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.need-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Donation Section */
.donate {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.donate-content {
    text-align: center;
    margin: 0 auto;
}

.donate-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.donate-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.donation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.donation-amounts h3,
.donation-impact h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.amount-btn {
    padding: 19px 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 25px;
}

.amount-btn:hover,
.amount-btn.active {
    background: #e74c3c;
    border-color: #e74c3c;
}

.custom-amount {
    margin-top: 1rem;
}

.custom-amount input {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 6px;
    font-size: 1rem;
}

.custom-amount input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.donation-impact ul {
    list-style: none;
}

.donation-impact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.donation-impact strong {
    color: #ffeaa7;
}

.donate-actions {
    text-align: center;
}

.tax-info {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 0.3rem;
}

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-map {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ecf0f1;
    color: #7f8c8d;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

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

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

.footer-section ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e74c3c;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: white !important;
}

.footer-bottom p {
    color: white !important;
}

.footer .footer-bottom p {
    color: white !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 40px; /* Increased top padding to account for taller header */
    }
    
    .nav-container {
        height: 80px; /* Slightly smaller on mobile */
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.6rem;
    }
    
    .nav-logo i {
        font-size: 2rem;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 81px; /* Adjusted to eliminate gap */
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        height: calc(100vh - 81px); /* Full viewport height minus header */
        overflow-y: auto; /* In case menu gets too tall */
    }

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

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        display: inline-block;
    }

    .donate-btn {
        padding: 10px 20px !important;
        font-size: 1.1rem !important;
    }

    .sponsor-btn {
        padding: 10px 20px !important;
        font-size: 1.1rem !important;
        margin-left: 0 !important;
        margin-bottom: 0.5rem !important;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

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

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .donation-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .recognition-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section {
        flex-direction: column;
    }

    .cta-section .btn {
        min-width: auto;
    }

    .funding-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .amount-buttons {
        grid-template-columns: 1fr;
    }

    .levels-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .big-stat {
        font-size: 3rem;
    }

    .sponsorship-card,
    .funding-section,
    .recognition-section,
    .sponsorship-contact {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

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

.section-header {
    animation: fadeInUp 0.6s ease-out;
}

.section-header .btn {
    margin-top: 1.5rem;
}

/* Focus states for accessibility */
.btn:focus,
.nav-menu a:focus,
.amount-btn:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero-cta,
    .donate-actions {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}
