@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
/* Общие стили */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #000;
}

/* Секция hero */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff url('images/BgPattern.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}

.hero-title {
  font-size: 55px; 
  font-weight: bold;
  color: #0055ff;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
  line-height: 1.4;
}

/* Анимация появления */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Стрелка */
.arrow {
  margin-top: 40px;
  font-size: 36px;
  color: #0055ff;
  text-decoration: none;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Секция FAQ */
.faq {
  padding: 60px 20px;
  background: #f9f9f9;
}

.faq h2 {
  text-align: center; 
  font-size: 55px;
  margin-bottom: 80px;
}

.faq {
  padding: 40px 20px;
  background: #f9f9f9;
}

.faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 18px;
}

.faq-toggle {
  background: #eee;
  border: none;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 50%;
  transition: background 0.3s;
}

.faq-toggle:hover {
  background: #007bff; 
  color: white;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}

.features {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.features h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 36px;
  color: #ff7a00;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.feature-card p {
  font-size: 16px;
  font-weight: 500; 
  color: #333;
  line-height: 1.6;
}


.pricing {
  padding: 60px 20px;
  background: #f4f4f4; 
  text-align: center;
}

.pricing h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}

.pricing-subtext {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.price {
  font-size: 34px;
  font-weight: 700;
  color: #ff7a00;
  margin-bottom: 20px;
}

.services {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}

.services li {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.services i {
  font-size: 18px;
  color: #ff7a00;
  margin-right: 10px;
}

.note {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-top: 10px;
}

.map-section {
  margin: 60px 0;
  text-align: center;
}

.map-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.footer {
  background: #000;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  color: #fff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  font-size: 20px;
  font-weight: bold;
  color: #FFA500;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFA500;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #FFA500;
}

.footer-socials {
  display: flex;
  gap: 15px;
  font-size: 22px;
}

.footer-socials a {
  color: #fff;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #FFA500;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #333;
}

/* === АДАПТИВНОСТЬ === */

/* Планшеты */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
    line-height: 1.3;
    padding: 0 20px;
  }

  .faq h2 {
    font-size: 42px;
  }

  .faq-question span {
    font-size: 17px;
  }

  .faq-answer {
    font-size: 15px;
  }
}

/* Смартфоны */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 0 15px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .arrow {
    font-size: 28px;
    margin-top: 20px;
  }

  .faq {
    padding: 40px 15px;
  }

  .faq h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-toggle {
    font-size: 18px;
    padding: 4px 10px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* Очень маленькие экраны (например, iPhone SE) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .faq h2 {
    font-size: 22px;
  }

  .faq-question span {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 13px;
  }
}


@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pricing-card {
    width: 100%;
    max-width: 320px;
  }
}

 .map-container iframe {
    height: 300px;
  }