body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}
.containerr {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

}

/* Меню */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid #4CAF50;
  box-shadow: 0 2px 8px rgba(0, 128, 0, 0.05);
  z-index: 1000;
}

.logo a{
  font-size: 22px;
  font-weight: bold;
  color: #2E7D32;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #2E7D32;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #66BB6A;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #2E7D32;
}

/* Мобільне меню */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 128, 0, 0.1);
    border-top: 1px solid #E0E0E0;
  }

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

  .menu-toggle {
    display: block;
  }
}

.hero {
  background-image: url('../img/hero.webp');
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 80, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
}

.hero-left {
  flex: 1 1 300px;
  text-align: center;
}

.hero-img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-right {
  flex: 1 1 400px;
  color: #ffffff;
  text-align: left;
}

.hero-right h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-right p {
  font-size: 18px;
  line-height: 1.7;
}

.google-icon img {
  width: 200px;
}.info-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

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

.info-image {
  flex: 1 1 400px;
  text-align: center;
}

.info-img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.info-text {
  flex: 1 1 500px;
  color: #333;
}

.info-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #2E7D32;
}

.info-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #555;
}

.info-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.features-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.features-title {
  text-align: center;
  font-size: 32px;
  color: #2E7D32;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.feature-icon {
  font-size: 36px;
  color: #388E3C;
  margin-bottom: 15px;
}
.feature-box h3 {
  font-size: 18px;
  color: #2E7D32;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.why-section {
  background-color: #f0fdf5;
  padding: 60px 20px;
}

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

.why-image {
  flex: 1 1 400px;
  text-align: center;
}

.why-img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.why-text {
  flex: 1 1 500px;
  color: #2E7D32;
}

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

.why-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.why-text ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.why-text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #333;
}

.why-text ul li::before {
  content: "✔";
  color: #43a047;
  position: absolute;
  left: 0;
  top: 0;
}

.subtitle {
  font-size: 15px;
  color: #555;
  font-style: italic;
  margin-top: 20px;
}
.contact-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 400px;
  color: #2E7D32;
}

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

.contact-info p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.contact-details {
  list-style: none;
  padding: 0;
  color: #444;
}

.contact-details li {
  margin-bottom: 15px;
  font-size: 15px;
}

.contact-details a {
  color: #2E7D32;
  text-decoration: none;
}

.contact-subtitle {
  margin-top: 20px;
  font-style: italic;
  color: #555;
  font-size: 15px;
}

.contact-form {
  flex: 1 1 400px;
}

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

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2E7D32;
  outline: none;
}

.contact-form button {
  background-color: #2E7D32;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #388E3C;
}
.footer {
  background-color: #2E7D32;
  color: #ffffff;
  padding: 20px 0;
}

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

.footer-left {
  font-size: 14px;
}

.footer-right a {
  color: #ffffff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #C8E6C9;
}

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

  .footer-right a {
    margin: 0 10px;
  }
}
.privacy-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.privacy-section h2 {
  text-align: center;
  font-size: 32px;
  color: #2E7D32;
  margin-bottom: 10px;
}

.effective-date {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.privacy-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  color: #333;
  line-height: 1.7;
  font-size: 15px;
}

.privacy-box h3 {
  margin-top: 30px;
  color: #2E7D32;
  font-size: 18px;
}

.privacy-box ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style: disc;
}
.thankyou-section {
  background-color: #e8f5e9;
  padding: 80px 20px;
  text-align: center;
}

.thankyou-box {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.thankyou-section h2 {
  font-size: 32px;
  color: #2E7D32;
  margin-bottom: 20px;
}

.thankyou-section p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.thankyou-button {
  display: inline-block;
  background-color: #2E7D32;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.thankyou-button:hover {
  background-color: #388E3C;
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: 0 auto;
  background-color: #f5f5f5;
  color: #333;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 10000;
}

.cookie-banner p {
  margin: 0 0 12px 0;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

#accept-cookies {
  background-color: #2E7D32;
  color: white;
}

#reject-cookies {
  background-color: #ccc;
  color: #333;
}

#accept-cookies:hover {
  background-color: #388E3C;
}

#reject-cookies:hover {
  background-color: #bbb;
}
.play-game {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background-color: #2E7D32;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.play-game:hover {
  background-color: #246527;
  transform: scale(1.05);
}
