body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #fff;
    padding-top: 50px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1f1f1f;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo a {
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: #00bcd4;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00bcd4;
}

/* Бургер */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    height: 3px;
    width: 25px;
    background-color: #fff;
    border-radius: 3px;
}

/* Мобільне меню */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 65px;
        right: 20px;
        background-color: #1f1f1f;
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        border-radius: 8px;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .burger {
        display: flex;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
}

.hero-text img {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.hero-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #00bcd4;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Адаптивність */
@media (max-width: 768px) {
    .hero-text img {
        max-width: 90%;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }
}

.google-icon img {
    width: 200px;
}

.about-section {
    background-color: #1c1c1c;
    padding: 80px 20px;
    color: #ffffff;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1 1 40%;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-text {
    flex: 1 1 55%;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #00bcd4;
}

.about-text h2 span {
    color: #ffffff;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #cccccc;
}

.about-text .subtitle {
    font-style: italic;
    color: #a0e8ff;
}

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

    .about-text h2 {
        font-size: 26px;
        text-align: center;
    }

    .about-text h3 {
        font-size: 20px;
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }
}

.why-section {
    background-color: #121212;
    padding: 80px 20px;
    color: #ffffff;
}

.why-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.why-text {
    flex: 1 1 60%;
}

.why-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #00bcd4;
}

.why-text h2 span {
    color: #ffffff;
}

.why-text .intro {
    font-size: 16px;
    margin-bottom: 25px;
    color: #ccc;
}

.why-points {
    list-style: none;
    padding-left: 0;
    font-size: 15.5px;
    line-height: 1.7;
    color: #ddd;
}

.why-points li {
    margin-bottom: 18px;
}

.why-images {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

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

    .why-images {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .why-images img {
        width: 48%;
    }

    .why-text h2 {
        text-align: center;
    }

    .why-text .intro,
    .why-points {
        text-align: center;
    }
}

.testimonials-section {
    background-color: #1c1c1c;
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-section h2 {
    font-size: 32px;
    color: #00bcd4;
    margin-bottom: 10px;
}

.testimonials-section .subtitle {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
}

.review .icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.review h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #00bcd4;
}

.review .text {
    font-size: 14.5px;
    color: #dddddd;
    line-height: 1.6;
}

.contact-section {
    background-color: #121212;
    padding: 80px 20px;
    color: #ffffff;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1 1 40%;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #00bcd4;
}

.contact-info .subtitle {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #dddddd;
}

.contact-info a {
    color: #00bcd4;
    text-decoration: none;
}

.contact-form {
    flex: 1 1 55%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 6px;
    border: none;
    background-color: #1f1f1f;
    color: #ffffff;
    font-size: 15px;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
}

.contact-form button {
    padding: 12px 20px;
    border: none;
    background-color: #00bcd4;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #019bb0;
}

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

    .contact-info,
    .contact-form {
        flex: 1 1 100%;
    }

    .contact-form form {
        width: 100%;
    }
}

.site-footer {
    background-color: #1a1a1a;
    padding: 40px 20px 20px;
    color: #cccccc;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #00bcd4;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-nav a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #00bcd4;
}

@media (max-width: 600px) {
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
}

footer p {
    font-size: 13px;
    color: #888888;
}

.privacy-section {
    background-color: #181818;
    color: #f0f0f0;
    padding: 80px 20px;
    line-height: 1.7;
    font-size: 15px;
}

.privacy-container {
    max-width: 1000px;
    margin: auto;
}

.privacy-section h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #00bcd4;
}

.privacy-section h3 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #ffffff;
}

.privacy-section p,
.privacy-section li {
    color: #dddddd;
}

.privacy-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-section a {
    color: #00bcd4;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-section .effective-date,
.privacy-section .last-updated {
    font-style: italic;
    color: #999999;
    margin-bottom: 15px;
}

.thanks-section {
    background-color: #121212;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.thanks-container {
    max-width: 800px;
    margin: auto;
}

.thanks-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00bcd4;
}

.thanks-container p {
    font-size: 16px;
    color: #dddddd;
    line-height: 1.6;
    margin-bottom: 15px;
}.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f1f1f;
  color: #ffffff;
  padding: 20px;
  text-align: center;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner a {
  color: #00bcd4;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

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

#accept-cookies {
  background-color: #00bcd4;
  color: white;
}

#decline-cookies {
  background-color: #444;
  color: white;
}

@media (max-width: 600px) {
  .cookie-buttons {
    flex-direction: column;
  }
}
