/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #334155;
}

/* Typography — modern scale with responsive h2 presence */
:root {
    --color-heading: #1e293b;
    --color-heading-muted: #334155;
    --font-h2: clamp(1.625rem, 2.5vw + 0.75rem, 2.125rem);
    --font-h2-section: clamp(2rem, 4vw + 0.5rem, 2.75rem);
    --font-h2-card: clamp(1.375rem, 2vw + 0.5rem, 1.75rem);
    --font-h2-panel: clamp(1.5rem, 2.5vw + 0.5rem, 1.875rem);
    --font-hero-h2: clamp(1.15rem, 2.5vw, 1.35rem);
}

h2 {
    font-size: var(--font-h2);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-heading);
}

h2 strong {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
}

/* Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-nav {
    background: #333;
    padding: 1rem;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    padding: 0.45rem 0.65rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-toggle:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.nav-toggle-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.nav-toggle-bar {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-nav.is-open .nav-toggle-bars .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-nav.is-open .nav-toggle-bars .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.site-nav.is-open .nav-toggle-bars .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
    font-weight: 500;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
    .site-nav {
        justify-content: flex-start;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-top: 0.75rem;
        padding: 0.25rem 0 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        border-radius: 6px;
        padding: 0.75rem 1rem;
    }

    .nav-links a:hover {
        transform: none;
    }

    .site-nav.is-open .nav-links {
        display: flex;
    }
}

/* Hero section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/church-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h2 {
    color: inherit;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0 auto 2rem;
    padding: 0 1rem;
    max-width: 42rem;
    font-size: var(--font-hero-h2);
    font-weight: 500;
    line-height: 1.55;
}

.hero h2 strong {
    color: inherit;
}

.hero-scripture {
    margin: 0 0 1.75rem;
    padding: 0;
    border: none;
    max-width: 38rem;
    width: 100%;
}

.hero-scripture-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.25rem;
}

.hero-scripture-line {
    display: block;
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    font-style: italic;
    line-height: 1.45;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Cascading down — each line steps narrower toward the middle, then opens again */
.hero-scripture-line:nth-child(1) {
    max-width: 100%;
}

.hero-scripture-line:nth-child(2) {
    max-width: 86%;
}

.hero-scripture-line:nth-child(3) {
    max-width: 70%;
}

.hero-scripture-ref {
    display: block;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.hero-scripture-ref::before {
    content: '— ';
    font-weight: 400;
    opacity: 0.85;
}

.hero-service-time {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: transparent;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Sections */
section {
    padding: 2rem;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 2rem;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #555;
}

/* Admin Login footer link (commented out in HTML)
.admin-link {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.admin-link:hover {
    color: #fff;
}
*/

/* Contact Page Styles */
.contact-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.location-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form h2,
.location-info h2 {
    font-size: var(--font-h2-panel);
    margin-bottom: 1.25rem;
}

.address-details {
    margin: 1.5rem 0;
}

.address-details p,
.service-times p {
    margin: 0.5rem 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

.submit-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.submit-button:hover {
    background: #0056b3;
}

/* Icons */
.fas {
    margin-right: 0.5rem;
    color: #007bff;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Branches Page Styles */
.branches-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.branches-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.branch-card {
    background: white;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.branch-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    height: auto;
}

.branch-image img {
    width: 70%;
    height: auto;
    min-height: 160px;
    max-height: 320px;
    object-fit: cover;
    margin: 50px;
    border-radius: 8px;
    display: block;
}

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

.branch-info h2 {
    font-size: var(--font-h2-card);
    margin-bottom: 1rem;
}

.pastor-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.pastor-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.pastor-details h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.pastor-details p {
    color: #666;
    font-size: 0.9rem;
}

.branch-details {
    color: #666;
}

.branch-map-link {
    display: block;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.branch-map-link:hover {
    border-color: #007bff;
    background: #eff6ff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.12);
}

.branch-map-link p {
    margin-bottom: 0.35rem;
}

.branch-map-link p:last-of-type {
    margin-bottom: 0.5rem;
}

.branch-map-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #007bff;
}

.branch-map-link:hover .branch-map-cta {
    text-decoration: underline;
}

.branch-details p {
    margin-bottom: 0.5rem;
}

.branch-details i {
    width: 20px;
    color: #007bff;
}

@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Grid */
.upcoming-services {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.upcoming-services h2 {
    font-size: var(--font-h2-section);
    text-align: center;
    margin-bottom: 3rem;
}

.events-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.event-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex: 1;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.event-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.event-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.event-time {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: bold;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .events-grid {
        flex-direction: column;
        align-items: center;
    }

    .event-card {
        width: 100%;
        max-width: 400px;
    }
}

/* Events page — poster grid */
.events-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.events-section h1 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.events-intro {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    color: inherit;
    font-size: var(--font-hero-h2);
    font-weight: 500;
    line-height: 1.55;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.event-posters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.75rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.event-poster-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-poster-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.event-poster-figure {
    margin: 0;
}

.event-poster-frame {
    aspect-ratio: 3 / 4;
    background: linear-gradient(145deg, #e9ecef, #dee2e6);
    overflow: hidden;
}

.event-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-poster-img.event-poster-img--fallback {
    object-fit: contain;
    padding: 1.5rem;
    opacity: 0.85;
}

.event-poster-caption {
    padding: 1rem 1.15rem 1.25rem;
    font-size: 1.08rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.35;
}

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

    .event-poster-caption {
        font-size: 0.95rem;
        padding: 0.75rem 0.5rem 1rem;
    }
}

/* Services Section Styles */
.services-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.services-section h1 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.services-section h1 strong {
    color: inherit;
}

.services-intro {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    color: inherit;
    font-size: var(--font-hero-h2);
    font-weight: 500;
    line-height: 1.55;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.branches-intro {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    color: inherit;
    font-size: var(--font-hero-h2);
    font-weight: 500;
    line-height: 1.55;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.services-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 1rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex: 1;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-card h2 {
    font-size: var(--font-h2-card);
    margin-bottom: 1rem;
}

.service-time {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: bold;
    margin: 1rem 0;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/church-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero-content h2 {
    color: inherit;
    font-size: var(--font-hero-h2);
    font-weight: 500;
    line-height: 1.55;
    max-width: 42rem;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-hero-content h2 strong {
    color: inherit;
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.about-content {
    padding: 4rem 2rem;
}

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

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

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

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #FF4500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.history-section {
    margin-bottom: 4rem;
}

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

.mission-card h2,
.vision-card h2 {
    font-size: var(--font-h2-card);
    margin-bottom: 1rem;
}

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

.history-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.history-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

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

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

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

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

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

.value-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .history-content {
        grid-template-columns: 1fr;
    }
    
    .history-image {
        height: 300px;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Donate Page Styles */
.donate-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/church-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.donate-hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.donate-content {
    padding: 4rem 2rem;
}

.donate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.donate-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.donate-form h2 {
    font-size: var(--font-h2-panel);
    margin-bottom: 1rem;
    text-align: center;
}

.donate-form p {
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

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

.donation-amount {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.donation-amount:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.donation-amount label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.donation-amount input[type="radio"] {
    margin: 0;
    transform: scale(1.2);
}

.amount-label {
    font-weight: 500;
    color: #333;
}

.donation-amount.custom input[type="number"] {
    margin-left: 2rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 150px;
}

.donate-button {
    width: 100%;
    padding: 1rem 2rem;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.donate-button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.donation-note {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.donation-note p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.donation-note i {
    color: #007bff;
    margin-right: 0.5rem;
}

.donate-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.donate-info h3 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.qr-section, .bank-details, .contact-donation {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.qr-section:last-child, .bank-details:last-child, .contact-donation:last-child {
    border-bottom: none;
}

.qr-section h4, .bank-details h4, .contact-donation h4 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qr-code {
    text-align: center;
    margin: 1rem 0;
}

.qr-code img {
    max-width: 200px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    background: white;
}

.bank-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-donation p {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-donation i {
    color: #007bff;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .donate-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .donate-hero h1 {
        font-size: 2.5rem;
    }
    
    .donation-amount.custom input[type="number"] {
        width: 100px;
    }
} 