html, body {
  height: 100%;
}

body {
  background: #fff;
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}

.header {
  display: flex;
  padding-top: 0; /* Убираем, чтобы не мешал */
  height: 60;   /* Можно убрать фиксированную высоту */
  position: relative;
}

.logo {
  display: block;
  height: 18px;
  width: auto;
  margin-right: 5px;      /* расстояние до текста = 5px */
  margin-top: 20px;       /* отступ от верха */
}

.company-name {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #2B5CF8;
  line-height: 25px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-top: 18px;       /* отступ от верха */
}

.main-block {
  position: relative;
  padding-top: 100px; /* отступ от верхней границы */
}

.business-solution-text {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 48px;
  line-height: 120%;
  text-align: center;
  width: 918px;
  margin: 0 auto; /* Центрируем */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.subtitle-text {
  width: 603px;
  margin: 10px auto 0 auto; /* 10px сверху от business-solution-text */
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #6C6C6C;
  text-align: center;
}

.main-btn {
  display: block;
  width: 189px;
  height: 41px;
  margin: 50px auto 0 auto; /* 50px сверху от subtitle-text */
  background: #2B5DF9;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s;
}

.main-btn:hover {
  background: #1d4ed8;
}

.btn-text {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.main-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 75px auto 0 auto; /* 70px сверху от main-btn */
}

/* Стили для футера - убираем отступ и фон */
.footer-block {
  width: 100%;
  height: 91px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.footer-info span {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #6C6C6C;
  line-height: 1.2;
}

/* пример адаптации от ГПТ
/* Планшеты (до 1040px) */
@media (max-width: 1040px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .business-solution-text {
    font-size: 42px;
    width: 100%;
  }

  .subtitle-text {
    font-size: 16px;
    width: 100%;
  }

  .main-btn {
    width: 180px;
    height: 42px;
  }

  .btn-text {
    font-size: 16px;
  }

  .footer-info {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Модальное окно */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.modal-content {
  background: #fff;
  border-radius: 30px;
  padding: 40px 30px;
  max-width: 460px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.modal-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 16px;
  font-family: 'Inter', sans-serif;
}

.modal-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #6C6C6C;
  margin: 0 0 24px;
  line-height: 1.6;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 16px;
  border: 1px solid #999;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  box-sizing: border-box;
  background: #fff;
  color: #000;
  font-family: 'Inter', sans-serif;
}

.modal-form textarea {
  border-radius: 30px;
  resize: vertical;
  min-height: 96px;
}

.modal-submit {
  width: 100%;
  padding: 16px 20px;
  background: #2B5DF9;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.modal-submit:hover {
  background: #1d4ed8;
}

.modal-privacy {
  font-size: 13px;
  color: #6C6C6C;
  text-align: left;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

.modal-privacy a {
  color: #2B5DF9;
  text-decoration: underline;
  font-family: 'Inter', sans-serif;
}