body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #ece9e6, #ffffff);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0;
}

.container {
  background: #f8f9fa;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-width: 740px;
  width: 90%;
  box-sizing: border-box;
}

h1 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.iframe-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Поиск билетов и информация о билетах — по умолчанию 230x290 */
.iframe-search,
.iframe-ticket {
  width: 230px;
  height: 290px;
}

.iframe-search iframe,
.iframe-ticket iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

/* Основное расписание адаптивное */
.iframe-schedule {
  position: relative;
  padding-top: 42%; /* пропорция */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
}

.iframe-schedule iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  margin-top: 24px;
  font-size: 13px;
  color: #888;
  text-align: center;
}

/* Адаптация для мобильных */
@media (max-width: 480px) {
  .row {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .iframe-search,
  .iframe-ticket {
    width: 90%;
    height: auto;
    padding-top: 125%; /* сохраняем пропорцию */
  }
  .iframe-search iframe,
  .iframe-ticket iframe {
    height: 100%;
  }
  .iframe-schedule {
    padding-top: 50%;
  }
  h1 {
    font-size: 22px;
  }
}