* {
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
    background-color: #f8f9fa; 
}






.news-logo {
    /* background: linear-gradient(100deg, #1e40af 0%, #3b82f6 50%, #93c5fd 100%); */
    background-color: #262625;
    height: 40vh;
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center; /* Центрируем заголовок */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-logo h1 {
    font-size: clamp(40px, 8vw, 70px);
    color: white;
    margin: 0;
    z-index: 2;
    position: relative;
}

.wave-container {
    position: absolute;
    bottom: -2px; /* Небольшой нахлест, чтобы убрать белую щель */
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.wave-container svg {
    display: block;
    width: 100%;
    height: 120px; /* Увеличь это число, если хочешь, чтобы волна была еще выше */
}

.wave-container svg path {
    fill: #f8f9fa; /* Должен совпадать с фоном секции .news */
}

/* На мобильных устройствах волну лучше делать чуть ниже, чтобы не перекрывала текст */
@media (max-width: 768px) {
    .wave-container svg {
        height: 60px;
    }
}


/* СТИЛІ ДЛЯ СТОРІНКИ ПРОГРАМИ */
/* ========== ДОДАТКОВІ СТИЛІ ДЛЯ СТОРІНКИ ПРОГРАМИ ========== */

.program-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.program-section {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 28px;
    padding: 30px 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    font-size: 18px;
}

.program-section:hover {
    transform: translateY(-4px);
}

.program-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #262625;
    border-left: 6px solid #85abba;
    padding-left: 20px;
    margin-bottom: 25px;
}

.program-section h3 {
    font-size: 27px;
    font-weight: 700;
    margin: 25px 0 15px 0;
    color: #1f2b38;
}

.program-section h4 {
    font-size: 23px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #2c3e4e;
}

.highlight {
    background: #e8f0f4;  /* новий фон замість #fef5e0 */
    padding: 20px 25px;
    border-radius: 20px;
    margin: 25px 0;
    border-left: 5px solid #85abba;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.stat-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.2s;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #85abba;
    line-height: 1.2;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e4e;
    margin-top: 8px;
}

.grid-2cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
}

.info-list li::before {
    content: "✓";
    color: #85abba;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.badge {
    display: inline-block;
    background: #262625;
    color: white;
    padding: 6px 15px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.team-tag {
    background: #eef2f5;
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: 500;
}

.risk-box {
    background: #e8f0f4;  /* той самий новий фон */
    border-radius: 20px;
    padding: 20px;
}

.button-donate {
    padding: 16px 0px;
    border-radius: 24px;
    cursor: pointer;

    
}

.button-donate a {
    text-decoration: none;
    font-weight: bold;
    color: white;
}

.program-section .button-donate {
    background-color: #85abba !important;
    transition: background-color 0.3s ease;
}

.program-section .button-donate:hover {
    background-color: #6c9aab !important;
    transform: scale(1.01);
    transition: transform 0.2s ease;
}

/* Адаптація */
@media (max-width: 768px) {
    .program-section {
        padding: 20px;
    }
    .program-section h2 {
        font-size: 28px;
    }
    .stat-number {
        font-size: 32px;
    }
    .grid-2cols {
        gap: 20px;
    }
    .stats-grid {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .program-container {
        padding: 10px;
    }
    .program-section {
        padding: 15px;
        margin-bottom: 30px;
    }
    .highlight {
        padding: 15px;
    }
    .stat-card {
        padding: 12px;
    }
    .team-tag {
        font-size: 14px;
        padding: 4px 12px;
    }
}
