* {
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
    background-color: #f8f9fa; /* Цвет на случай, если картинка не грузится */
}











/* СТИЛІ ДЛЯ ХЕДЕРА (HERO) СТОРІНКИ ПАРТНЕРСТВА */
.news-logo {
    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(44px, 8vw, 76px);
    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;
}

@media (max-width: 768px) {
    .wave-container svg {
        height: 60px;
    }
}

/* УНІКАЛЬНІ СТИЛІ ДЛЯ СТОРІНКИ ПАРТНЕРСТВА */
.partner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.partner-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;
}

.partner-section:hover {
    transform: translateY(-4px);
}

.partner-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #262625;
    border-left: 6px solid #85abba;
    padding-left: 20px;
    margin-bottom: 25px;
}

.partner-section h3 {
    font-size: 27px;
    font-weight: 700;
    margin: 25px 0 15px 0;
    color: #1f2b38;
}

.highlight {
    background: #e8f0f4;
    padding: 20px 25px;
    border-radius: 20px;
    margin: 25px 0;
    border-left: 5px solid #85abba;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.partner-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.2s;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.partner-card .card-number {
    display: inline-block;
    background: #85abba;
    color: white;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.partner-card h3 {
    margin: 0 0 15px 0;
    font-size: 25px;
}

.partner-card p {
    color: #4a5b6b;
    line-height: 1.5;
    font-size: 16px;
}

.partner-form {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1f2b38;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #85abba;
    box-shadow: 0 0 0 2px rgba(133, 171, 186, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background-color: #85abba;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Manrope", sans-serif;
}

.submit-btn:hover {
    transform: scale(1.02);
    background-color: #6c9aab;
}

.form-note {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .partner-section {
        padding: 20px;
    }
    .partner-section h2 {
        font-size: 28px;
    }
    .partner-card h3 {
        font-size: 20px;
    }
    .partner-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .partner-container {
        padding: 10px;
    }
    .partner-section {
        padding: 15px;
        margin-bottom: 30px;
    }
}