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

body {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2%;
}

.container {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 80%;
    margin-top: 1%;
    margin-bottom: 1%;
}

.callola-info {
    padding: 40px 20px;
    text-align: center;
}

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

.callola-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.callola-info p {
  font-size: 18px;
  line-height: 1.6;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .callola-info h2 {
    font-size: 26px;
  }

  .callola-info p {
    font-size: 16px;
  }
}






.why-callola {
  padding: 40px 20px;
  text-align: center;
}

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

.why-callola h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.why-callola p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .why-callola h2 {
    font-size: 26px;
  }

  .why-callola p {
    font-size: 16px;
  }
}



.contact-us {
  padding: 40px 20px;
  text-align: center;
}

.contact-us h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.contact-button.whatsapp {
  background-color: #25d366; /* Цвет WhatsApp */
}

.contact-button.telegram {
  background-color: #0088cc; /* Цвет Telegram */
}

.contact-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-button {
    width: 90%;
    margin-bottom: 15px;
  }
}






.tariffs {
  padding: 40px 20px;
  text-align: center;
}

.tariffs h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.tariff-button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.tariff-button:hover {
  background-color: #0056b3;
}

.tariff-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tariff-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tariff-card:hover {
  transform: translateY(-10px);
}

.tariff-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.tariff-card .price {
  font-size: 20px;
  color: #007bff;
  margin-bottom: 20px;
}

.tariff-card button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.tariff-card button:hover {
  background-color: #0056b3;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .tariff-cards {
    flex-direction: column;
    align-items: center;
  }

  .tariff-card {
    width: 90%;
    margin-bottom: 20px;
  }
}