/* Стили для страницы */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #ffffff;
  background-color: rgb(29, 28, 34);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.logo {
  border-radius: 10px;
}

.input-container {
  display: flex;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.input-container input {
  flex: 1;
  padding: 15px;
  font-size: 1.2em;
  border: 2px solid #ccc;
  border-radius: 8px 0 0 8px;
  outline: none;
}

.input-container button {
  padding: 15px 25px;
  font-size: 1.2em;
  background-color: #6200ea;
  color: #ffffff;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.input-container button:hover {
  background-color: #3700b3;
}

.container {
  width: 90%;
  max-width: 1200px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu {
  display: flex;
  justify-content: center;
  padding: 20px;
  font-size: 1.2em;
}

.hero {
  margin-top: 50px;
}

.hero h1 {
  font-size: clamp(2em, 5vw + 1em, 3.5em);
  font-weight: bold;
}

.hero p {
  font-size: 1.2em;
  max-width: 600px;
  margin: 20px auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.cta-buttons .button {
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 25px;
  text-decoration: none;
}

.cta-buttons .free-trial {
  background-color: #03a9f4;
  color: #ffffff;
}

.cta-buttons .see-more {
  background-color: #333333;
  color: #ffffff;
  border: 2px solid #ffffff;
}

footer {
  margin-top: 50px;
  font-size: 0.8em;
  color: #888888;
}
