.responsive-image img {
  width: 50%; /* По умолчанию 1/2 */
}

@media (max-width: 768px) { /* Для мобильных устройств */
  .responsive-image img {
    width: 100%;
  }
}

.hero {
  text-align: center;
  padding: 4rem 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
}

.btn {
  background-color: #0078e7;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 2rem 0;
}

.feature {
  text-align: center;
  max-width: 300px;
}

.call-to-action {
  text-align: center;
  padding: 3rem 0;
}

/* Стили для главной страницы */
.full-width-container {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.full-width-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.md-main__inner{
  margin-top: 0px !important;
}

.md-grid {
  max-width: none !important;
}

.sm-button {
    font-size: 0.8rem; /* Уменьшенный текст */
    padding: 5px 10px; /* Уменьшенные отступы */
    border-radius: 4px; /* Радиус углов */
}