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

body {
  font-family: "manrope", sans-serif;
  line-height: 1.6;
  background-color: black;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
}

nav .right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.logo {
  width: 120px;
}
select{
  background: transparent;
  color: white;
}
option{
  color: #111;
}

/* Hero Section */
.hero {
  text-align: center;
  color: white;
  padding: 100px 20px;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("header-image.png");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.email-form {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.sign-in{
 padding: 10px 20px;
  font-size: 1rem;
  background: red;
  color: white;
  border: none;
  cursor: pointer;
}
.left-section h1{
  color: #eee ;

}
.right-section-3{
  color: white;

}
.fourth-section h1{
  color: #eee;
}
.fiveth-section h1{
  color: #eee;
  
}
p{
  color: #eee;
}
.center{
  margin-top: 10px;
}

.email-form input {
  padding: 10px;
  font-size: 1rem;
  width: 300px;
}

.email-form button {
  padding: 10px 20px;
  font-size: 1rem;
  background: red;
  color: white;
  border: none;
  cursor: pointer;
}
.faq-container h1{
  color: #eee;
}
/* Sections */
.second-section, .third-section, .fourth-section, .fiveth-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 8%;
  gap: 2rem;
}

.second-section img,
.third-section img,
.fourth-section img,
.fiveth-section img {
  max-width: 100%;
  height: auto;
}


/* FAQ Section */
.faq-container {
  padding: 50px 8%;
  text-align: center;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  background: #333;
  color: white;
  border: none;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 10px;
  background: #eee;
}

/* Footer */
footer {
  background: #111;
  color: white;
  padding: 40px 8% 20px;
}

.footer-contanier {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-box h3 {
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}
.faq-item{
  margin-top: 20px;
}

/* ---------- Responsive Rules ---------- */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.1rem;
  }

  .email-form {
    flex-direction: column;
    gap: 10px;
  }

  .email-form input,
  .email-form button {
    width: 100%;
  }

  .second-section, 
  .third-section, 
  .fourth-section, 
  .fiveth-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .footer-contanier {
    flex-direction: column;
    text-align: center;
  }
  .faq-container h1{
  color: #eee;
  font-size: 30px;
}
.center{
  font-size: 20px;
}
.ali{
  font-size: 10px;
}
}
