.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


body {
  /* Твоя же заливка + делаем её анимированной */
  background: linear-gradient(
    135deg,
    rgba(118, 196, 234, 0.2) 16%,
    rgba(134, 132, 170, 0.2) 49%,
    rgba(41, 55, 150, 0.2) 100%
  ), #36657D;
font-family: "Montserrat", sans-serif;
}

a{
  text-decoration: none;
  color: white;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* логотип слева, меню справа */
  padding: 0 20px;
  flex-direction: row;
}
nav {
  color: white;
  font-size: 25px;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  display: flex;
  gap: 30px; /* чуть больше расстояния */
  box-sizing: border-box;
  margin-top: 31px;
  margin-left: 35%;
  user-select: none; /* чтобы текст не выделялся случайно */
}

/* Стили для ссылок внутри навигации */
nav a {
  color: white;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
  cursor: pointer;
  font-weight: 500;
}

/* Подчеркивание при наведении */
nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: white;
  transition: width 0.3s ease;
}

/* При ховере подчеркивание растягивается и цвет меняется */
nav a:hover {
  color: #aaddff;
}

nav a:hover::after {
  width: 100%;
}

/* Для активного пункта меню */
nav a.active {
  color: #aaddff;
}

nav a.active::after {
  width: 100%;
}
.logo{
  color: white; 
    flex-shrink: 0; /* чтобы лого не сжимался */
display: flex;
  font-size: 36px; 
  font-family: Montserrat; 
  font-weight: 700; 
  word-wrap: break-word;
  margin-left: 15px;
  margin-top: 21px;
}
.apply-button {
  width: 293px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0px 4px 12px rgba(255, 255, 255, 0.2) inset;
  border-radius: 99px;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  margin-top: 31px;

  color: #fff;
  font-size: 25px;
  font-weight: 900;

  cursor: pointer;

  /* Анимации для hover */
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.apply-button:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow:
    0px 4px 20px rgba(255, 255, 255, 0.3),
    0px 0px 30px rgba(255, 255, 255, 0.15) inset;
  transform: translateY(-3px) scale(1.03);
}
.form-section {
  width: 700px;
  margin: 100px auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: white;
  font-family: "Montserrat", sans-serif;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.application-form select,
.application-form input,
.application-form textarea {
  padding: 14px 18px;
  font-size: 16px;
  background: linear-gradient(
    137deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.2);
  border-radius: 28px;
  border: 1px solid white;
  backdrop-filter: blur(20px);
  color: white;
  outline: none;
  resize: none;
  transition: 0.3s ease;
}

.application-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  position: relative;
}

/* Сами options */
.application-form select option {
  background-color: #1c1c1c;
  color: white;
}

/* Фокус */
.application-form select:focus,
.application-form input:focus,
.application-form textarea:focus {
  border-color: #aaddff;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 8px rgba(170, 221, 255, 0.6);
}

.application-form input::placeholder,
.application-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.apply-submit {
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: white;
  font-weight: 800;
  font-size: 18px;
  padding: 14px;
  border-radius: 99px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.apply-submit:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
  transform: scale(1.03);
}
.footertext{
  color: white; 
  font-size: 22px; 
  font-weight: 600; 
  word-wrap: break-word;
       margin: 95px auto 0 auto; /* сверху 50px отступ, слева и справа авто для центрирования */
display: flex;
justify-content: center;
align-items: center;
}
.footertext2{
 color: white; 
 font-size: 28px; 
 font-weight: 300; 
 word-wrap: break-word;
        margin: 105px auto 0 auto; /* сверху 50px отступ, слева и справа авто для центрирования */
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 50px;
}

.footerlinkwebify{
   color: white; 
 font-size: 18px; 
 font-weight: 300; 
 word-wrap: break-word;
        margin: 105px auto 0 auto; /* сверху 50px отступ, слева и справа авто для центрирования */
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 50px;
}
