body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f1c6a8;
  color: #222;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 36px 13%;
  font-size: 18px;
}

.logo {
  background: #1f2933;
  color: white;
  padding: 8px 11px;
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: 680px;
  padding: 120px 13%;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: 560px;
  background: #2f3b46;
  color: white;
  padding: 48px;
}

.hero-card h1 {
  font-size: 76px;
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 30px;
}

.hero-card p {
  line-height: 1.6;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  background: #eee8e8;
  color: #555;
  padding: 14px 28px;
  margin-right: 14px;
  text-decoration: none;
}

.hero-img {
  position: absolute;
  right: 11%;
  top: 90px;
  width: 560px;
  height: 500px;
  object-fit: cover;
}

.dark {
  background: #2f3b46;
  color: white;
  text-align: center;
  padding: 120px 10%;
}

.dark h2 {
  font-size: 64px;
  line-height: 1.15;
  font-weight: 400;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 70px;
}

.gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.menu {
  background: #f4f1ef;
  padding: 100px 10%;
  text-align: center;
}

.menu h2 {
  font-size: 78px;
  font-weight: 400;
  margin-bottom: 10px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 70px;
  text-align: left;
}

.course {
  background: #111;
  color: white;
  padding: 36px;
}

.course h3 {
  font-size: 30px;
}

.course strong {
  color: #f1c6a8;
  font-size: 20px;
}

.course img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  margin: 30px 0;
}

.course p {
  margin: 28px 0;
}

.faq {
  background: #2f3b46;
  color: white;
  padding: 100px 12%;
}

.center {
  text-align: center;
  margin-bottom: 80px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 90px;
}

.faq h3 {
  font-size: 26px;
}

.faq p {
  line-height: 1.6;
}

footer {
  background: #f4f1ef;
  padding: 80px 12%;
}

.footer-logo {
  font-size: 24px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
}

footer p {
  margin-top: 40px;
}

@media (max-width: 900px) {
  .hero-card,
  .hero-img {
    position: static;
    width: 100%;
  }

  .hero-card h1 {
    font-size: 52px;
  }

  .gallery,
  .cards,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .menu h2 {
    font-size: 52px;
  }
}
