@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter Tight", sans-serif;
  position: relative;
  /* margin: 0 80px; */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0;
  margin: 0 80px;
}
.logo {
  width: 70px;
}
.links ul,
.links2 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.links ul li,
.links2 ul li {
  list-style-type: none;
}

.links ul li a,
.links2 ul li a {
  text-decoration: none;
  color: #000;
}

.button a {
  padding: 12px 24px;
  text-decoration: none;
  /* background-color: #fa55ad; */
  background: linear-gradient(to right, #ff71cf, #ff657a);
  color: #fff;
  border-radius: 30px;
}
/* #73E5E6 */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  margin: 0 80px;
  margin-bottom: 80px;
}

.hero .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.hero .content h1 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
}
.hero .content p {
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
  color: #353f37;
}
.hero-img {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 80px;
}

.features h2,
.mission h2 {
  font-size: 38px;
  text-align: center;
}

.feature-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  height: 200px;
  width: 33.33%;
  padding: 26px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
  border-radius: 20px;
}

.feature-card h3,
.mission-div h3,
.vision-div h3 {
  font-size: 20px;
  font-weight: 500;
}

.feature-card p,
.mission-div p,
.vision-div p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #353f37;
}

.mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 80px;
  margin-top: 100px;
  margin-left: 120px;
  margin-right: 120px;
}

.mission-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}

.mission-div {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* padding: 30px; */
  gap: 20px;
  border-radius: 20px;
  height: auto;
}

.vision-div {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* padding: 30px; */
  gap: 20px;
  border-radius: 20px;
  height: auto;
}

.join {
  margin: 0 80px;
  margin-top: 100px;
  border-radius: 20px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.join h2 {
  color: #fff;
  font-size: 40px;
}

.join p {
  color: #fcfcfc;
  text-align: center;
  line-height: 25px;
}

.join .button {
  margin-top: 30px;
}

.faq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 80px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.faq-title {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-title h2 {
  font-size: 36px;
}
.faqs {
  width: 60%;
}
.faq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  gap: 40px;
  background-color: #fafafa;
  padding: 36px;
  border-radius: 20px;
}

.faq-title {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-title h2 {
  font-size: 36px;
  margin: 0;
}

.faqs {
  width: 60%;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.faq-question {
  width: 100%;
  padding: 15px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-family: inherit;
  align-items: center;
}

.faq-question::after {
  content: "+";
  color: #fa55ad;
  font-size: 24px;
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 10px 0;
  margin: 0;
  font-size: 16px;
  color: #555;
}

footer {
  margin-top: 100px;
  padding: 80px;
  padding-top: 20px;
  padding-bottom: 40px;
}

.part1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: sticky;
  top: 86px;
  width: 100%;
  background: white;
  padding: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  padding: 15px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .links {
    display: none;
  }

  .menu-icon {
    display: block;
  }
  .navbar {
    margin: 0 20px;
    padding: 20px 0;
  }
  .hero {
    flex-direction: column;
    margin: 0 20px;
  }
  .hero .content {
    width: 100%;
  }
  .hero-img {
    width: 100%;
  }
  .hero {
    height: auto;
    padding: 40px 0;
    gap: 40px;
  }
  .hero .content h1 {
    font-size: 35px;
    line-height: 50px;
    text-align: center;
  }
  .hero .content p {
    text-align: center;
  }
  .features h2 {
    font-size: 24px;
  }
  .features {
    margin: 0 20px;
  }
  .feature-wrap {
    flex-direction: column;
    margin: 20px 20px;
  }
  .feature-card {
    width: 100%;
    height: auto;
  }
  .mission h2 {
    font-size: 24px;
  }
  .mission {
    margin: 0 20px;
    margin-top: 40px;
  }
  .mission-wrap {
    flex-direction: column;
  }
  .mission-div {
    width: 100%;
  }
  .vision-div {
    width: 100%;
  }
  .faq {
    margin: 0 20px;
    flex-direction: column;
  }
  .faq-title h2 {
    font-size: 24px;
    text-align: center;
  }
  .faq-title {
    width: 100%;
  }
  .faqs {
    width: 100%;
    margin-bottom: 20px;
  }
  .join {
    margin: 40px 20px;
    padding: 60px 20px;
  }
  .join h2 {
    font-size: 24px;
    text-align: center;
  }
  footer {
    padding: 20px;
  }
  .part1 {
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    width: 60px;
  }
  .button {
    margin: 0 auto;
  }
  .subtitle {
    margin-bottom: 10px;
  }
  body {
    padding-top: 80px;
  }
  .navbar {
    width: 90%;
    position: fixed;
    top: 0;
    left: 0;
    /* width: 100%; */
    margin: 0;
    padding: 2px 20px;
    background: #fff;
    margin: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
}
