:root {
    --primary: #0055a4;
    --secondary: #ff8500;
    --accent: #8b0000;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #f5f5f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1593113630400-ea4288922497?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgent-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 1.4rem;
    border-radius: 999px;
    background-color: #ff4b5c;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    animation: fadeInScale 0.8s ease-out, pulse 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 75, 92, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.urgent-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 75, 92, 0.6);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 75, 92, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 16px rgba(255, 75, 92, 0.7);
        transform: scale(1.02);
    }
}

.header-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #e67600;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

/* Main Content */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Key Figures Section */
.key-figures-section {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
                url('https://images.unsplash.com/photo-1593113630400-ea4288922497?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 0;
    color: white;
    position: relative;
}

.key-figures-section .section-title h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.key-figures-section .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

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

.key-figure-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border-top: 4px solid var(--secondary);
    border-left: 1px solid rgba(255, 133, 0, 0.3);
    border-right: 1px solid rgba(255, 133, 0, 0.3);
    border-bottom: 1px solid rgba(255, 133, 0, 0.3);
}

.key-figure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(255, 133, 0, 0.3);
    background: rgba(0, 0, 0, 0.75);
    border-top-color: var(--secondary);
}

.key-figure-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.key-figure-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(255, 133, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    transition: text-shadow 0.3s ease;
}

.key-figure-card:hover .key-figure-number {
    text-shadow: 0 0 30px rgba(255, 133, 0, 0.8), 0 2px 12px rgba(0, 0, 0, 0.6);
    color: #ffaa33;
}

/* Donation Section */
.donation-section {
    background-color: var(--light);
}

/* Free Initiative Notice */
.free-initiative-notice {
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.1), rgba(255, 133, 0, 0.1));
    border: 2px solid var(--primary);
    border-left: 4px solid var(--secondary);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    margin: 1.5rem auto 2rem;
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 85, 164, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.free-initiative-notice:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 85, 164, 0.15);
}

.notice-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 2px 6px rgba(0, 85, 164, 0.25);
}

.notice-content {
    flex: 1;
}

.notice-content h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.notice-content h3 a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.notice-content h3 a:hover {
    color: #e67600;
    text-decoration: underline;
}

.notice-content p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.notice-content p strong {
    color: var(--accent);
    font-weight: 700;
}

/* Donation Notice */
.donation-notice {
    margin-top: 1.25rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.notice-item {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin: 0.35rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.notice-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

.notice-item.highlight {
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.1), rgba(255, 133, 0, 0.1));
    padding: 0.5rem;
    border-radius: 4px;
    color: var(--primary);
    font-weight: 600;
    border: 1px solid rgba(0, 85, 164, 0.2);
    margin: 0.5rem 0;
}

.notice-item.highlight i {
    color: var(--secondary);
    font-size: 0.95rem;
}

.notice-item.highlight strong {
    color: var(--accent);
}

.donation-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.donation-options {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.donation-info {
    flex: 1;
    min-width: 300px;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.amount-option {
    background: white;
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.amount-option:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 85, 164, 0.18);
    transform: translateY(-2px);
}

.amount-option.selected {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.custom-amount {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.custom-amount:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 85, 164, 0.2);
    background-color: #fff;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-method {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 15px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-method:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-method.selected {
    border-color: var(--primary);
    background-color: rgba(0, 85, 164, 0.05);
}

.payment-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #555;
}

.payment-method.selected .payment-icon {
    color: var(--primary);
}

.payment-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.payment-logos {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.payment-logos img {
    height: 20px;
}

.donate-button {
    display: block;
    width: 100%;
    background-color: var(--success);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
    margin-top: 1.5rem;
}

.donate-button:hover {
    background-color: #218838;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.donate-button:active {
    transform: translateY(1px) scale(0.99);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
}

.donate-button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
}

.funds-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.funds-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.funds-info h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.progress-container {
    margin: 2rem 0;
}

.progress-bar {
    height: 20px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--success);
    width: 35%;
    transition: width 0.5s ease;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

/* Fundraising Platform Section */
.fundraising-platform-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 2.5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.fundraising-platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.fundraising-platform-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem 1rem;
}

.fundraising-platform-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fundraising-platform-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.fundraising-platform-text strong {
    color: var(--secondary);
    font-weight: 700;
}

.free-highlight {
    background: linear-gradient(135deg, var(--secondary), #ffaa33);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 133, 0, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 133, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 16px rgba(255, 133, 0, 0.7);
    }
}

.fundraising-platform-cta {
    margin-top: 1.5rem;
}

.contact-us-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), #ffaa33);
    color: white;
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 133, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.contact-us-button:hover {
    background: linear-gradient(135deg, #ffaa33, var(--secondary));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 133, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-us-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 133, 0, 0.5);
}

/* International News Coverage Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-tile {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary);
}

.video-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    padding: 1.5rem;
}

.video-title h3 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

/* News Articles Section */
.news-articles-section {
    margin-top: 3rem;
}

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

.news-article-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    color: var(--dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary);
}

.news-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    color: var(--dark);
}

.news-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.news-content {
    flex: 1;
}

.news-content h4 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.news-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.news-article-card:hover .news-link {
    gap: 0.8rem;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f1419 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}

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

.footer-column {
    position: relative;
}

.footer-about {
    max-width: 350px;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo h3 i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 133, 0, 0.3);
}

.footer-column h3 i {
    font-size: 1rem;
    color: var(--secondary);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-column ul li i {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
    width: 16px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column a:hover {
    color: var(--secondary);
    transform: translateX(3px);
}

.footer-column a:hover i {
    transform: scale(1.1);
}

.footer-column span {
    color: rgba(255, 255, 255, 0.85);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--secondary);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 133, 0, 0.1);
    border: 2px solid rgba(255, 133, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 133, 0, 0.4);
    border-color: var(--secondary);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #ffaa33;
}

.copyright strong {
    color: var(--secondary);
    font-weight: 600;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 133, 0, 0.1);
    border: 1px solid rgba(255, 133, 0, 0.3);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

.badge i {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content h2 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .amount-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .payment-method {
        min-width: 100px;
        padding: 10px 5px;
    }
    
    .payment-icon {
        font-size: 1.5rem;
    }
    
    .payment-label {
        font-size: 0.8rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-title {
        padding: 1.2rem;
    }
    
    .video-title h3 {
        font-size: 1rem;
    }
    
    .news-articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-article-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .news-icon {
        margin: 0 auto;
    }
    
    .news-content h4 {
        font-size: 1.1rem;
    }
    
    .free-initiative-notice {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        margin: 1.25rem auto 1.5rem;
    }
    
    .notice-icon {
        margin: 0 auto;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .notice-content h3 {
        font-size: 1rem;
    }
    
    .notice-content p {
        font-size: 0.85rem;
    }
    
    .notice-item {
        font-size: 0.8rem;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .key-figures-section {
        background-attachment: scroll;
    }
    
    .key-figures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .key-figure-card {
        padding: 1.5rem;
    }
    
    .key-figure-number {
        font-size: 2rem;
    }
    
    .key-figure-label {
        font-size: 0.9rem;
    }
    
    .fundraising-platform-section {
        padding: 2rem 0;
    }
    
    .fundraising-platform-content {
        padding: 1.25rem 1rem;
    }
    
    .fundraising-platform-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .fundraising-platform-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    .fundraising-platform-cta {
        margin-top: 1.25rem;
    }
    
    .contact-us-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
    
    footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .key-figures-section {
        background-attachment: scroll;
    }
    
    .key-figures-grid {
        grid-template-columns: 1fr;
    }
    
    .key-figure-number {
        font-size: 1.8rem;
    }
    
    .fundraising-platform-section {
        padding: 1.75rem 0;
    }
    
    .fundraising-platform-content {
        padding: 1rem 0.75rem;
    }
    
    .fundraising-platform-title {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .fundraising-platform-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .fundraising-platform-cta {
        margin-top: 1rem;
    }
    
    .contact-us-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
}