.navbar {
  background-color: #0b0c10;
  border-bottom: 1px solid #1f232b;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e81155;
  text-decoration: none;
}

.nav-links a {
  margin-left: 2rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e81155;
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* или преобразовать в бургер-меню */
  }
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0b0c10;
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

p {
  font-size: 1.125rem;
  color: #cfd2dc;
  margin-bottom: 1.5rem;
}

.wrapper {
  padding: 4rem 1.5rem;
  max-width: 960px;
  margin: auto;
}

/* Intro */
#intro {
  background: linear-gradient(to right, #15191e, #1f2630);
  text-align: center;
}

#intro .button {
  margin-top: 1rem;
}

/* Sections */
#one, #two, #three {
  background-color: #1a1e24;
  border-top: 1px solid #2c323a;
  border-bottom: 1px solid #2c323a;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #e81155;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #c10f49;
}

/* Form */
form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

form label {
  font-weight: 500;
  color: #e6e6e6;
}

form input[type="text"],
form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #2c323a;
  color: #ffffff;
  border: 1px solid #444c56;
  border-radius: 8px;
  font-size: 1rem;
}

form button {
  margin-top: 1rem;
  background-color: #e81155;
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #0b0c10;
  color: #999;
  font-size: 0.9rem;
}

/* Responsive */
@media screen and (max-width: 600px) {
  h1, h2 {
    font-size: 2rem;
  }

  .wrapper {
    padding: 2rem 1rem;
  }
}