@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.main {
  background-image: url('background.jpg');
  height: 80vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.box {
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 60%;
  margin: 0 auto;
  padding: 10px 0;
  color: white;
  height: 52px;
  position: relative;
  z-index: 2;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

nav img {
  width: 114px;
}

nav button {
  background: transparent;
  border: 1px solid white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  color: white;
  transition: background 0.3s;
  margin-left: 10px;
  font-weight: 500;
}

nav button:hover {
  background: white;
  color: black;
}

.hero {
  height: calc(80vh - 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  gap: 23px;
}

.hero span:first-child {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.hero span:nth-child(2) {
  font-size: 24px;
  font-weight: 500;
  margin-top: 10px;
}

.hero span:nth-child(3) {
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-buttons input {
  padding: 10px;
  width: 300px;
  max-width: 80vw;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
}

.btn-red {
  background-color: red;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}

.btn-red:hover {
  background-color: darkred;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
    max-width: 90%;
  }

  .hero span:first-child {
    font-size: 32px;
  }

  .hero span:nth-child(2),
  .hero span:nth-child(3) {
    font-size: 18px;
  }

  .hero-buttons input {
    width: 250px;
  }
}
body {
  background-color: #000000;
}
.separation {
  height: 8px;
  background-color: #353535;
}
.main input{
  padding: 7px 101px 8px 14px;
  font-size: 12px;
  color: white;
  background: transparent;
  border: 1px solid white;
  border-radius: 4px;
}
.first {
  padding: 20px;
  color: white;
  display: flex;
  justify-content: space-between;
}
.q{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.secimg
{
  width: 30vw;
  height: 100%;
  display: flex;
  align-items: right;
}
.content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 50px;
  color: white;
  gap: 40px;
  flex-wrap: wrap;
}

.content-row.reverse {
  flex-direction: row-reverse;
}

.content-row .text {
  flex: 1;
  min-width: 280px;
}

.content-row .text h2.q {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.content-row .text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.content-row .secimg {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-row .secimg img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .content-row {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  
  .content-row.reverse {
    flex-direction: column;
  }

  .content-row .text,
  .content-row .secimg {
    width: 100%;
  }
}
.faq {
  background-color: black;
  color: white;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #444;
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: #2d2d2d;
  color: white;
  font-size: 20px;
  font-weight: 500;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #444;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #2d2d2d;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  font-size: 16px;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on content */
}
footer {
  background-color: #000;
  color: #999;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-call {
  margin-bottom: 20px;
  font-size: 16px;
  color: #ccc;
}

.footer-call a {
  color: #ccc;
  text-decoration: none;
}

.footer-call a:hover {
  text-decoration: underline;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 20px;
  width: 100%;
  margin-bottom: 20px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-note {
  font-size: 13px;
  color: #777;
}
@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}