* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  background-color: #07071c;
  color: #acacb5;
  font-size: 1.125rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/images/bg-purple.svg"),
    url("./assets/images/bg-blue.svg"), url("./assets/images/bg-teal.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  color: #ffffff;
  font-weight: 700;
  margin: 20px 0 10px;
}

h1 {
  font-size: 2.4rem;
  text-align: center;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 10px;
}

.highlight {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 20px 0;
  color: #4ee39d;
  text-align: center;
}

.world-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.section {
  margin-top: 30px;
}

ul {
  list-style: none;
  padding-left: 0;
}

.check li::before {
  content: "✅";
  margin-right: 8px;
}

.dot li::before {
  content: "🔹";
  margin-right: 8px;
}

.target li::before {
  content: "✔️";
  margin-right: 8px;
}

.grid-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.grid-pair .section {
  flex: 1 1 300px;
}

.mentor {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-top: 20px;
}

.mentor-photo-wrapper {
  flex: 1 1 48%;
  min-width: 300px;
}

.mentor-photo {
  width: 100%;
  min-height: 400px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.mentor-details {
  flex: 1 1 48%;
}

.certificates {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.certificate {
  flex: 1 1 calc(33.333% - 20px);
  background: #1a1a33;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  box-sizing: border-box;
}

.certificate img {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 8px;
  display: block;
}

.testimonials blockquote {
  background: #2e2140;
  padding: 15px;
  border-left: 5px solid #5f3ba5;
  margin-bottom: 15px;
  border-radius: 6px;
  color: #ffffff;
}

.contact-section {
  margin-top: 50px;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  background: #1a1a33;
  padding: 20px;
  border-radius: 10px;
}

.contact-form input {
  flex: 1 1 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #444;
  background: #2e2140;
  color: #fff;
  transition: all 0.2s ease;
  max-width: 100%;
  height: auto;
}

.contact-form input::placeholder {
  color: #888;
}

.contact-form input:focus {
  outline: none;
  border-color: #9756ff;
  box-shadow: 0 0 6px #9756ff;
  background-color: #2e2140;
}

@media (max-width: 768px) {
  .grid-pair {
    flex-direction: column;
  }

  .mentor {
    flex-direction: column;
  }

  .mentor-photo-wrapper,
  .mentor-details {
    flex: 1 1 100%;
  }

  .certificate {
    flex: 1 1 100%;
  }

  .contact-form {
    flex-direction: column;
  }

  .contact-form input {
    width: 100%;
    height: auto;
  }

  h1 {
    font-size: 1.8rem;
  }

  .highlight {
    font-size: 1.4rem;
  }
}
