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

:root {
    /* Color Palette - Compassionate Blue, White, Black */
    --primary-blue: #2563EB;
    --secondary-blue: #1E40AF;
    --light-blue: #DBEAFE;
    --accent-blue: #3B82F6;
    --white: #FFFFFF;
    --black: #000000;
    --dark-gray: #1F2937;
    --medium-gray: #6B7280;
    --light-gray: #F3F4F6;
    --text-dark: #111827;
    --text-light: #6B7280;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.section-subtitle {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 2rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 0.75rem 0;
    min-height: 90px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 1px;
}

.donate-btn {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
}

.donate-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

.donate-btn::after {
    display: none;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    z-index: -2;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroImageFade 12s infinite;
}

.hero-bg-image:nth-child(1) {
    animation-delay: 0s;
}

.hero-bg-image:nth-child(2) {
    animation-delay: 4s;
}

.hero-bg-image:nth-child(3) {
    animation-delay: 8s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--accent-gold);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    transform: scaleX(0);
    animation: slideIn 1.5s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

/* About Section */
.about {
    padding: 48px 0 48px 0;
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: flex-start;
    min-height: 500px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

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

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 8px 25px rgba(37,99,235,0.18);
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-label {
    color: #fff;
}

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

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.about-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 8px 36px rgba(0,0,0,0.13);
    background: #fff;
    transition: box-shadow 0.3s;
}

.about-image img:hover {
    box-shadow: 0 16px 48px rgba(37,99,235,0.18);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-gray), #E5E7EB);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
    transition: var(--transition);
}

.image-placeholder:hover {
    transform: scale(1.02);
}

.image-placeholder p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

/* Projects Section */
/* Old Projects Section - Removed to avoid conflicts with new What We Do section */

/* Location Section */
.location {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 400px;
}

.location-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-info {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.5;
}

.map-container {
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-gray), #E5E7EB);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
    transition: var(--transition);
}

.map-placeholder:hover {
    transform: scale(1.02);
}

.map-placeholder p {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.map-placeholder small {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
    background: var(--white);
}

/* GALLERY WRAPPER */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    padding: 20px;
    animation: fadeIn 1s ease-in;
}

@media (max-width: 900px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px;
    }
}
@media (max-width: 600px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 6px;
    }
    .gallery-item {
        min-width: 0;
        min-height: 0;
        border-radius: 10px;
        width: 100%;
        aspect-ratio: 1/1;
        height: auto;
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        overflow: hidden;
        padding: 0;
        position: relative;
    }
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background: #fff;
        display: block;
        border-radius: 10px;
    }
}

/* IMAGE CARD */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s, border-color 0.4s;
    border: 3px solid #fff;
    background: #fff;
    aspect-ratio: 1 / 1;
    width: 100%;
    min-width: 0;
    min-height: 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
}

.gallery-item:hover {
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.18), 0 2px 8px rgba(0,0,0,0.10);
    border-color: #2563eb;
    animation: borderGlow 1s linear infinite alternate;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* ZOOM HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(85%);
}

/* ICON ON HOVER (OPTIONAL) */
.gallery-item::after {
    content: "\1F50D"; /* magnifying glass unicode */
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2rem;
    color: white;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* FADE IN ANIMATION */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.9));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    padding: 1rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.gallery-content i {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

#lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    padding: 1.5rem;
    background: var(--white);
}

.lightbox-caption h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.lightbox-caption p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(37, 99, 235, 0.8);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(37, 99, 235, 1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 180px;
    }
    
    .lightbox {
        padding: 1rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-social {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-social h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.social-links {
    display: grid;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
}

/* Donation Section */
.donate {
    padding: var(--section-padding);
    background: var(--white);
}

.donate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.donation-impact {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.impact-item:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
}

.impact-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 20px;
}

.impact-item:hover i {
    color: var(--white);
}

.donation-options {
    margin-top: 2rem;
}

.donation-options h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.donation-amounts {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.amount-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary-blue);
    color: var(--white);
}

.amount-btn.custom {
    background: var(--light-gray);
    border-color: var(--text-light);
    color: var(--text-dark);
}

.donation-frequency {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.frequency-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    transition: var(--transition);
}

.frequency-option:hover {
    border-color: var(--primary-blue);
}

.frequency-option input[type="radio"] {
    accent-color: var(--primary-blue);
}

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

.donate-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
}

.donate-image img:hover {
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

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

.footer-section p {
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--light-blue);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
}

.newsletter-form button {
    padding: 0.75rem 1rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #D1D5DB;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-blue);
}

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

@keyframes heroImageFade {
    0%, 30% {
        opacity: 0.4;
        transform: scale(1);
    }
    35%, 100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-bg-image {
        animation-duration: 8s;
    }
    
    .about-grid,
    .location-grid,
    .donate-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: unset;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-amounts {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-image img {
        max-width: 100%;
        height: 320px;
    }
    
    .about-content {
        padding-bottom: 1.5rem;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-bg-image {
        animation-duration: 6s;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* What We Do Section */
.what-we-do {
    padding: 8px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.initiative-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    position: relative;
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 100, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.initiative-card:hover .card-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease-in-out;
}

.initiative-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    animation: iconPulse 2s infinite;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.overlay-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.card-content {
    padding: 2rem;
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 50, 100, 0.3);
    transition: all 0.3s ease-in-out;
}

.initiative-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(0, 50, 100, 0.4);
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-bg-image {
        animation-duration: 8s;
    }
    
    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .initiative-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-bg-image {
        animation-duration: 6s;
    }
    
    .what-we-do {
        padding: 4px 0;
    }
    
    .initiatives-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .initiative-card {
        border-radius: 15px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
    
    .overlay-content {
        padding: 1.5rem;
    }
    
    .overlay-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .overlay-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
}

/* Impact Cards Gallery Section */
.impact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
}
.impact-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.13);
    transform: translateY(-6px) scale(1.03);
}
.impact-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: 4px solid #f4f6fa;
}
.impact-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.impact-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.impact-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    opacity: 0.85;
}
@media (max-width: 1024px) {
    .impact-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .impact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .impact-card {
        padding: 2rem 1rem 1rem 1rem;
    }
    .impact-card img {
        width: 64px;
        height: 64px;
    }
    .impact-stat {
        font-size: 2rem;
    }
}

/* Impact Pictures Section (Stats) */
.impact-pictures {
    padding: var(--section-padding);
    background: #f9fafb;
}
.impact-pictures .section-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}
.impact-pictures .section-title i {
    color: var(--primary-blue);
    font-size: 2rem;
    vertical-align: middle;
}
.impact-pictures .section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.impact-stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}
.impact-stat-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
}
.impact-stat-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.13);
    transform: translateY(-6px) scale(1.03);
}
.impact-stat-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
}
.impact-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.impact-stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    opacity: 0.85;
}
@media (max-width: 1024px) {
    .impact-stats-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .impact-stats-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .impact-stat-card {
        padding: 2rem 1rem 1rem 1rem;
    }
    .impact-stat-icon {
        font-size: 2rem;
    }
    .impact-stat-number {
        font-size: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .about {
        padding: 32px 0 32px 0;
    }
}

/* Styled Map Container */
.styled-map-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.map-embed-wrapper {
    position: relative;
    width: 100%;
}
.map-embed-wrapper iframe {
    width: 100%;
    min-height: 320px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 2px 16px rgba(37,99,235,0.08);
    background: #f3f4f6;
}
.get-directions-btn {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: #22c55e;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(34,197,94,0.15);
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.get-directions-btn:hover {
    background: #16a34a;
    box-shadow: 0 4px 16px rgba(34,197,94,0.22);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: unset;
    }
    .styled-map-container {
        max-width: 100%;
        padding: 1rem 0.5rem 1.5rem 0.5rem;
    }
}
@media (max-width: 600px) {
    .styled-map-container {
        padding: 0.5rem 0.2rem 1rem 0.2rem;
        border-radius: 12px;
    }
    .map-embed-wrapper iframe {
        min-height: 180px;
        border-radius: 10px;
    }
    .location-content {
        align-items: center;
        text-align: center;
    }
}

.map-side-image {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}
.map-side-image img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    border: 3px solid #fff;
    background: #f3f4f6;
    transition: transform 0.2s, box-shadow 0.2s;
}
.map-side-image img:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(37,99,235,0.18);
}
@media (max-width: 600px) {
    .map-side-image img {
        width: 120px;
        height: 80px;
        border-radius: 10px;
    }
    .map-side-image {
        margin-top: 1rem;
    }
}

.what-we-do .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.gallery.image-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    height: 260px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .gallery.image-popup {
        height: 180px;
        min-height: 140px;
    }
}

@media (max-width: 768px) {
    .gallery.image-popup {
        height: 120px;
        min-height: 100px;
    }
}

@keyframes borderGlow {
    0% {
        border-color: #2563eb;
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.18), 0 2px 8px rgba(0,0,0,0.10);
    }
    100% {
        border-color: #fbbf24;
        box-shadow: 0 8px 32px rgba(251, 191, 36, 0.18), 0 2px 8px rgba(0,0,0,0.10);
    }
}

/* Responsive adjustments for .gallery-item */
@media (max-width: 768px) {
    .gallery-item {
        border-radius: 12px;
        border-width: 2px;
    }
}
@media (max-width: 480px) {
    .gallery-item {
        border-radius: 8px;
        border-width: 1.5px;
    }
}

/* For vertical centering in the gallery section, center the container's content */
.gallery .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: rgba(30, 41, 59, 0.7);
    color: #fff;
    padding: 0.7em 1em;
    opacity: 0;
    font-size: 1rem;
    transition: opacity 0.3s;
    border-radius: 0 0 14px 14px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Latest News and Articles Section */
.news-section {
    padding: 80px 0 40px 0;
    background: #FFF9ED;
}
.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}
.news-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
    min-width: 0;
}
.news-card:hover {
    box-shadow: 0 12px 36px rgba(37,99,235,0.13);
    transform: translateY(-6px) scale(1.03);
}
.news-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: visible;
    margin-bottom: -18px;
}
.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 0 0 0;
    transition: transform 0.4s;
}
.news-card:hover .news-image-wrapper img {
    transform: scale(1.06);
}
.news-date-badge {
    position: absolute;
    right: 18px;
    bottom: 0;
    left: auto;
    transform: translateY(50%);
    background: var(--white);
    color: #1db954;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.4rem 1.4rem;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    z-index: 2;
    letter-spacing: 0.5px;
    border: 1.5px solid #e5e7eb;
    min-width: 120px;
    text-align: center;
    white-space: nowrap;
}
.news-card-content {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}
.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.2rem;
    line-height: 1.4;
}
.news-read-more {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    margin-top: auto;
    transition: color 0.2s;
}
.news-read-more:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}
@media (max-width: 1024px) {
    .news-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 700px) {
    .news-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .news-card-content {
        padding: 2rem 1rem 1rem 1rem;
    }
    .news-title {
        font-size: 1.1rem;
    }
    .news-date-badge {
        font-size: 1rem;
        min-width: 90px;
        padding: 0.3rem 1rem;
        right: 10px;
    }
    .news-image-wrapper {
        margin-bottom: -14px;
    }
}

/* Donation Form Styles */
.donation-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.donor-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.donor-info:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.donor-info h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.custom-amount-container {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid var(--light-gray);
}

.custom-amount-container input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
}

.custom-amount-container input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.payment-summary {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.payment-summary h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E5E7EB;
}

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

.summary-item.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-blue);
    border-top: 2px solid var(--primary-blue);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.loading-spinner {
    margin-left: 0.5rem;
}

.loading-spinner i {
    color: var(--white);
    font-size: 1rem;
}

.security-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: #F0F9FF;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.security-notice i {
    color: var(--primary-blue);
    font-size: 1rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--white);
    font-weight: 500;
    z-index: 10000;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #10B981;
    border-left: 4px solid #059669;
}

.notification.error {
    background: #EF4444;
    border-left: 4px solid #DC2626;
}

.notification.info {
    background: var(--primary-blue);
    border-left: 4px solid var(--secondary-blue);
}

.notification.warning {
    background: #F59E0B;
    border-left: 4px solid #D97706;
}

/* Responsive Design for Payment Form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .donor-info {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .payment-summary {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .summary-item {
        font-size: 0.9rem;
    }
    
    .summary-item.total {
        font-size: 1rem;
    }
    
    .security-notice {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .donor-info h4,
    .payment-summary h4 {
        font-size: 1rem;
    }
    
    .custom-amount-container {
        padding: 0.75rem;
    }
    
    .custom-amount-container input {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
} 