/* Подключаем шрифт Poppins */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
}

/* Общие стили */
header {
  background: #333;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600; /* Полужирный */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500; /* Средний вес */
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
}

/* Герой-секция */
.hero {
  background: #007BFF;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700; /* Жирный */
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 400; /* Обычный */
}

.cta-button {
  background: #fff;
  color: #007BFF;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600; /* Полужирный */
}

/* Секция возможностей */
.features {
  padding: 4rem 2rem;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700; /* Жирный */
}

.feature-cards {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.card {
  background: #f4f4f4;
  padding: 1.5rem;
  border-radius: 10px;
  width: 30%;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600; /* Полужирный */
}

.card p {
  font-weight: 400; /* Обычный */
}

/* О нас */
.about {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700; /* Жирный */
}

.about p {
  font-size: 1.2rem;
  font-weight: 400; /* Обычный */
}

/* Контакты */
.contact {
  padding: 4rem 2rem;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700; /* Жирный */
}

.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact input, .contact textarea {
  width: 100%;
  max-width: 500px;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif; /* Шрифт для формы */
}

.contact button {
  background: #007BFF;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif; /* Шрифт для кнопки */
  font-weight: 600; /* Полужирный */
}

/* Футер */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-weight: 400; /* Обычный */
}

/* Адаптивность */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #333;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .feature-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 80%;
    margin-bottom: 1rem;
  }
}