:root {
    --primary-color: #ee6543;
    --secondary-color: #bd8e47;
    --primary-text: #7c4111;
    --accent-color: #e67e22;
    --accent-light: #f39c12;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #f9f7f4;
    --light-color: #ffffff;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: var(--shadow-light);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(206, 108, 84, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--background-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(206, 108, 84, 0.2);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(191, 94, 70, 0.85) 0%, rgba(124, 78, 41, 0.972) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.shape-circle-1 {
    width: 200px;
    height: 200px;
    background: white;
    top: -50px;
    right: 5%;
    animation-duration: 10s;
}

.shape-circle-2 {
    width: 150px;
    height: 150px;
    background: white;
    bottom: 10%;
    left: 5%;
    animation-duration: 8s;
    animation-delay: 1s;
}

.shape-circle-3 {
    width: 120px;
    height: 120px;
    background: white;
    top: 30%;
    left: 10%;
    animation-duration: 12s;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(30px) rotate(-10deg); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 3rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.8s ease-out;
}

.hero-heart-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-heart-gif {
    max-width: 100px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    animation: heroHeartWave 2.2s ease-in-out infinite;
}

@keyframes heroHeartWave {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    25% {
        transform: scale(1.08) translateY(-5px);
    }
    50% {
        transform: scale(1.15) translateY(-10px);
    }
    75% {
        transform: scale(1.08) translateY(-5px);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.about-issue {
    padding: 6rem 20px;
    background: var(--light-color);
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.info-card {
    background: linear-gradient(135deg, rgba(206, 108, 84, 0.08) 0%, rgba(230, 126, 34, 0.08) 100%);
    padding: 1.8rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary-color);
    display: flex;
    gap: 1.5rem;
    animation: slideUp 0.8s ease-out;
    animation-delay: 0.2s;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-card p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.6;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(206, 108, 84, 0.25);
    animation: pulse 3s ease-in-out infinite;
}

.visual-icon {
    font-size: 6rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.funds-usage {
    padding: 6rem 20px;
    background: white;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-text);
    margin-bottom: 4rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 0;
    border-radius: 3px;
}

.funds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.fund-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: cardEnter 0.6s ease-out;
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fund-card:nth-child(1) { animation-delay: 0.1s; }
.fund-card:nth-child(2) { animation-delay: 0.2s; }
.fund-card:nth-child(3) { animation-delay: 0.3s; }
.fund-card:nth-child(4) { animation-delay: 0.4s; }
.fund-card:nth-child(5) { animation-delay: 0.5s; }
.fund-card:nth-child(6) { animation-delay: 0.6s; }

.fund-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(206, 108, 84, 0.2);
    border-color: var(--primary-color);
}

.fund-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.fund-card:hover::before {
    transform: scaleX(1);
}

.fund-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.fund-card:hover .fund-icon {
    transform: scale(1.15) rotate(5deg);
}

.fund-card h3 {
    font-size: 1.4rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.fund-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.qr-section {
    padding: 6rem 20px;
    background: linear-gradient(135deg, rgba(206, 108, 84, 0.1) 0%, rgba(230, 126, 34, 0.08) 100%);
}

.qr-content-simple {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

.qr-content-simple h2 {
    font-size: 2.2rem;
    color: var(--primary-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.qr-content-simple p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.qr-content-simple .qr-note {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
}

.mission {
    padding: 6rem 20px;
    background: white;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.8rem;
    color: var(--primary-text);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.mission-content h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.mission-main {
    font-size: 1.4rem;
    color: var(--primary-text);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 500;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    background: linear-gradient(135deg, rgba(206, 108, 84, 0.05), rgba(230, 126, 34, 0.05));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(206, 108, 84, 0.1);
    transition: all 0.3s ease;
    animation: cardEnter 0.6s ease-out;
}

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(206, 108, 84, 0.15);
    background: white;
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.2) rotate(-10deg);
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-section {
    padding: 6rem 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s ease-in-out infinite;
}

.cta-shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: 5%;
}

.cta-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 10%;
    animation-delay: 2s;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
    animation: slideUp 0.8s ease-out;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-thanks {
    font-size: 1.15rem;
    margin-top: 2rem;
    font-weight: 500;
}

.impact {
    padding: 6rem 20px;
    background: white;
}

.impact h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-text);
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.impact h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 0;
    border-radius: 3px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: linear-gradient(135deg, rgba(206, 108, 84, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    animation: cardEnter 0.6s ease-out;
}

.impact-card:nth-child(1) { animation-delay: 0.1s; }
.impact-card:nth-child(2) { animation-delay: 0.2s; }
.impact-card:nth-child(3) { animation-delay: 0.3s; }

.impact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 45px rgba(206, 108, 84, 0.2);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.impact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.impact-card h3 {
    font-size: 1.4rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.impact-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.6;
}

.contact-cta {
    padding: 6rem 20px;
    background: linear-gradient(135deg, rgba(206, 108, 84, 0.05), rgba(230, 126, 34, 0.05));
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banking-info {
    padding: 6rem 20px;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--background-color) 100%);
    border-top: 3px solid var(--primary-color);
}

.banking-content {
    max-width: 700px;
    margin: 0 auto;
    animation: slideUp 0.8s ease-out;
}

.banking-content h2 {
    font-size: 2.8rem;
    color: var(--primary-text);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.banking-content h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.banking-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.account-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border: 2px solid rgba(206, 108, 84, 0.1);
    transition: all 0.3s ease;
}

.account-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 45px rgba(206, 108, 84, 0.15);
}

.account-field {
    text-align: center;
}

.account-field label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    word-spacing: 5px;
}

.transfer-note {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 2.5rem 0;
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(206, 108, 84, 0.25);
}

.copy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(206, 108, 84, 0.35);
}

.copy-btn:active {
    transform: translateY(-1px);
}

.banking-info-card {
    background: linear-gradient(135deg, rgba(206, 108, 84, 0.1), rgba(230, 126, 34, 0.08));
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 2rem;
}

.banking-info-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
}

.banking-footer {
    text-align: center;
}

.banking-footer p {
    font-size: 1.3rem;
    color: var(--primary-text);
    font-weight: 600;
}

.flyer-section {
    padding: 6rem 20px;
    background: white;
}

.flyer-card {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(206, 108, 84, 0.2);
    animation: slideUp 0.8s ease-out;
    background: white;
}

.flyer-header {
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--accent-light) 100%);
    position: relative;
    overflow: hidden;
}

.flyer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.flyer-content {
    padding: 3rem 2.5rem;
    text-align: center;
}

.flyer-heart-animation {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.flyer-heart {
    max-width: 150px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(238, 101, 67, 0.25));
    animation: waveScale 2s ease-in-out infinite;
}

.flyer-title {
    font-size: 2.2rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flyer-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.btn-download-flyer {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(238, 101, 67, 0.35);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-download-flyer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-download-flyer:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(238, 101, 67, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-download-flyer:hover::before {
    left: 100%;
}

.btn-download-flyer:active {
    transform: translateY(-2px) scale(1.02);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-content {
        padding: 2rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visual-circle {
        width: 230px;
        height: 230px;
    }

    .visual-icon {
        font-size: 4.5rem;
    }

    .qr-content-simple {
        padding: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .mission-content h2 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-large {
        width: 100%;
    }

    .impact h2 {
        font-size: 2.2rem;
    }

    .funds-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta h2 {
        font-size: 2rem;
    }

    .banking-content h2 {
        font-size: 2.2rem;
    }

    .account-box {
        padding: 2rem;
    }

    .account-number {
        font-size: 1.4rem;
        word-spacing: 2px;
    }

    .transfer-note {
        font-size: 1.2rem;
    }

    .flyer-card {
        margin: 0 auto;
    }

    .flyer-content {
        padding: 2rem 1.5rem;
    }

    .flyer-title {
        font-size: 1.8rem;
    }

    .flyer-description {
        font-size: 1rem;
    }

    .btn-download-flyer {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .flyer-heart {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .flyer-title {
        font-size: 1.5rem;
    }

    .flyer-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-download-flyer {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .flyer-heart {
        max-width: 100px;
    }

    .flyer-header {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .fund-card {
        padding: 1.8rem 1.5rem;
    }

    .fund-icon {
        font-size: 2.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content > p {
        font-size: 1.1rem;
    }

    .impact-number {
        font-size: 2.8rem;
    }

    .impact-card {
        padding: 2rem 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }
}
