@font-face {
  font-family: 'Gotham Pro';
  src: url('fonts/GothamPro.woff2') format('woff2'),
       url('fonts/GothamPro.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Pro';
  src: url('fonts/GothamPro-Medium.woff2') format('woff2'),
       url('fonts/GothamPro-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Pro';
  src: url('fonts/GothamPro-Bold.woff2') format('woff2'),
       url('fonts/GothamPro-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/* Базовые стили для мобильных */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url("img/stars-bg.png") no-repeat center top;
    background-size: cover;
    color: #ecebeb;
    display: flex;
    flex-direction: column;
}

.wrapper {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 24px;
  width: 115px;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav-btn {
  border: 1px solid #0fa978;
  background: #1a1a1a;
  color: #ecebeb;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #0fa978;
  color: #fff;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 15px;
}

.hero-left {
  width: 100%;
}

.hero-left h1 {
  font-family: 'Gotham Pro', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ecebeb;
  margin: 0 0 8px 0;
}

.hero-left h2 {
  font-size: 16px;
  font-weight: 500;
  color: #ecebeb;
  margin: 0;
}

.hero-left h2 span {
  color: #0fa978;
}

.hero-left .desc {
  font-size: 14px;
  font-weight: 300;
  color: #828282;
  margin-top: 12px;
  line-height: 1.4;
}

.hero-right {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-right .fon {
  width: 100%;
  height: auto;
  max-height: 200px;
}

.hero-right .mentor {
  height: 180px;
}

.info-block {
  background: #1a1a1a;
  color: #0c976b;
  font-size: 12px;
  text-align: center;
  padding: 12px;
  border-radius: 4px;
}

.btn {
  display: block;
  text-align: center;
  background: #0088cc;
  color: #fafafa;
  font-size: 16px;
  font-weight: 500;
  padding: 12px;
  margin: 10px 0;
  border-radius: 4px;
  text-decoration: none;
}

.content-block {
  background: #1a1a1a;
  padding: 15px;
  font-size: 14px;
  color: #828282;
  margin-bottom: 10px;
  border-radius: 4px;
  line-height: 1.4;
}

.faq-item {
  background: #1a1a1a;
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #1a1a1a;
  border: none;
  color: #828282;
  font-size: 16px;
  padding: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  color: #0fa978;
  font-size: 14px;
  transition: transform 0.2s;
}

.faq-question.active .icon {
  transform: rotate(180deg);
}

.faq-answer {
  font-family: 'GothamPro-Light', sans-serif;
  margin: 5px;
  display: none;
  padding: 0 12px 12px;
  font-size: 14px;
  color: #828282;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Gotham Pro', sans-serif;
  font-weight: 700;
}

h1 {
  font-weight: 500;
}

p, span, li, a, div {
  font-family: 'Gotham Pro', sans-serif;
}

header .logo {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
}

header .logo span {
  color: #21d07a;
}

header .logo small {
  color: #fafafa;
  font-weight: 400;
  font-size: 12px;
}

/* Планшеты (768px и выше) */
@media (min-width: 768px) {
  .wrapper {
    max-width: 768px;
    padding: 20px;
  }
  
  .hero {
    flex-direction: row;
    text-align: left;
    gap: 30px;
  }
  
  .hero-left {
    width: 60%;
  }
  
  .hero-right {
    width: 40%;
    justify-content: flex-end;
  }
  
  .hero-left h1 {
    font-size: 24px;
  }
  
  .hero-left h2 {
    font-size: 18px;
  }
  
  .hero-left .desc {
    font-size: 16px;
  }
  
  .hero-right .mentor {
    height: 220px;
  }
  
  .nav-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
  
  .info-block {
    font-size: 14px;
    padding: 15px;
  }
  
  .content-block {
    font-size: 16px;
  }
  
  .faq-question {
    font-size: 18px;
  }
  
  .faq-answer {
    font-size: 16px;
  }
}

/* Десктоп (1024px и выше) */
@media (min-width: 1024px) {
  .wrapper {
    max-width: 1024px;
    padding: 30px;
  }
  
  .hero-left h1 {
    font-size: 28px;
  }
  
  .hero-left h2 {
    font-size: 20px;
  }
  
  .hero-left .desc {
    font-size: 18px;
  }
  
  .hero-right .mentor {
    height: 250px;
  }
  
  .logo {
    height: 32px;
    width: 150px;
  }
  
  .nav {
    gap: 15px;
  }
  
  .info-block {
    font-size: 16px;
    margin: 5px 0;
    padding: 18px;
  }
  
  .btn {
    padding: 15px;
    font-size: 18px;
    margin: 15px 0;
  }
  
  header .logo {
    font-size: 22px;
  }
  
  header .logo small {
    font-size: 14px;
  }
}

/* Большие экраны (1200px и выше) */
@media (min-width: 1200px) {
  .wrapper {
    max-width: 1200px;
  }
  
  .hero-left h1 {
    font-size: 32px;
  }
  
  .hero-left h2 {
    font-size: 22px;
  }
  
  .hero-left .desc {
    font-size: 20px;
  }
  
  .hero-right .mentor {
    height: 280px;
  }
}
.logo {
  --line-spacing: 0px; /* Переменная для управления расстоянием между строками */
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.main-text {
  font-size: 15px;
  color: green;
  margin: 0;
  padding: 0;
}

.sub-text {
  font-size: 20px;
  color: white;
  margin: 0;
  padding: 0;
  margin-top: var(--line-spacing);
}