* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    color: #fff;
    background-color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header {
    background: #fff;
    color: #000;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-weight: bold;
    font-size: 24px;
}

.nav a {
    color: #000;
    text-decoration: none;
    margin-left: 30px;
    font-weight: bold;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    background-color: #111;
}

.hero-content {
    flex: 1 1 500px;
    padding: 60px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
}

.btn {
    display: inline-block;
    background-color: #3366cc;
    color: #fff;
    padding: 15px 25px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
}

.hero-image {
    flex: 1 1 500px;
    min-height: 400px;
}

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

/* Адаптив */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        margin-top: 10px;
    }

    .hero {
        flex-direction: column;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .btn {
        padding: 12px 20px;
    }
}

.mission {
    background-color: #fff;
    text-align: center;
    padding: 0px 0px 40px 0;
}

.mission-heading {
    background-color: #7c197c;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    font-size: 18px;
    text-align: left;
}

.mission-text p {
    font-size: 24px;
    max-width: 900px;
    margin: 40px auto 0;
    line-height: 1.5;
}

.mission-text strong {
    color: #000;
}

.mission-text span {
    color: #bbb;
}

/* Адаптивність */
@media (max-width: 768px) {
    .mission-text p {
        font-size: 18px;
    }

    .mission-heading {
        font-size: 16px;
        text-align: center;
    }
}

.offer {
    background-image: url("./imgs/2.png"); /* Заміни на свій шлях */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 20px;
    color: white;
}

.offer-overlay {

    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    text-align: center;
}

.offer h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.offer-card {
    background-color: #7c197c;
    padding: 25px;
    border-radius: 6px;
    text-align: left;
}

.offer-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.offer-card ul {
    list-style: disc;
    padding-left: 20px;
    color: #ddd;
    font-size: 15px;
    line-height: 1.6;
}

.offer .btn {
    background-color: #3366cc;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
}

/* Адаптивність */
@media (max-width: 768px) {
    .offer h2 {
        font-size: 28px;
    }

    .offer-card h3 {
        font-size: 18px;
    }

    .offer-card ul {
        font-size: 14px;
    }

    .offer .btn {
        padding: 12px 20px;
    }
}

.audience {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.audience-title {
    background-color: #2f63a0;
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 15px;
    margin-bottom: 30px;
}

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

.audience-content ul {
    text-align: left;
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #000;
}

.audience-content .btn {
    background-color: #2f63a0;
    color: white;
    padding: 14px 24px;
    text-decoration: none;
    display: inline-block;
    border-radius: 3px;
    font-weight: bold;
}

/* Відгуки */
.testimonials {
    background-color: #fff;
    padding: 60px 20px;
}

.testimonials-title {
    background-color: #2f63a0;
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.testimonials-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.testimonial {
    flex: 1 1 45%;
}

.testimonial h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.testimonial p {
    font-size: 16px;
    color: #222;
}

/* Адаптивність */
@media (max-width: 768px) {
    .testimonials-content {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial {
        flex: 1 1 100%;
    }

    .audience-content ul {
        font-size: 15px;
    }
}

.contact {
    background-image: url("./imgs/3.png"); 
    background-size: cover;
    background-position: center;
    padding: 0px 0px 40px 0;
    position: relative;
}

.contact-title {
    background-color: #7c197c;
    color: white;
    font-weight: bold;
    font-size: 24px;
    padding: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    color: white;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 10px 15px;
    font-size: 16px;
    margin-top: 5px;
    border: none;
    border-radius: 4px;
    background-color: white;
    color: #000;
}

.contact-form button {
    padding: 14px;
    font-size: 16px;
    background-color: #2f63a0;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #111;
    color: white;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 0 10px;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #ccc;
    padding: 30px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    text-align: center;
}

.cookie-banner h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.cookie-banner p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #333;
}

.cookie-banner a {
    color: #2f63a0;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.cookie-buttons button {
    padding: 14px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

#acceptCookies {
    background-color: #2f63a0;
    color: white;
}

#rejectCookies.secondary {
    background-color: transparent;
    color: #111;
}

/* Адаптивність */
@media (min-width: 600px) {
    .cookie-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-buttons button {
        width: auto;
        min-width: 180px;
    }
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 0;
}

html {
    scroll-behavior: smooth !important;
}