* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary: #ee4d2d;
  --secondary: #ff7337;
  --dark: #111827;
  --light: #f5f5f5;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

body {
  background: var(--light);
  color: #222;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  background: white;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 7%;

  box-shadow: var(--shadow);
}

.logo {
  font-size: 32px;
  font-weight: 800;

  color: var(--primary);

  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.nav-links .active {
  color: var(--primary);
}

/* HERO */
.hero {
  min-height: 60vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 160px 7% 80px;

  background: linear-gradient(120deg, #fff7f5, #ffffff);
}

.hero h1 {
  font-size: 65px;

  margin-bottom: 20px;
}

.hero p {
  color: #666;

  margin-bottom: 40px;
}

/* SEARCH */
.search-box {
  width: 100%;
  max-width: 600px;

  position: relative;
}

.search-box input {
  width: 100%;

  padding: 18px 20px;

  border-radius: 50px;
  border: 2px solid #eee;

  outline: none;
}

.search-box button {
  position: absolute;

  right: 5px;
  top: 5px;

  padding: 12px 25px;

  border: none;
  border-radius: 50px;

  background: var(--primary);
  color: white;

  cursor: pointer;
}

/* SECTION */
section {
  padding: 100px 7%;
}

.section-title {
  text-align: center;

  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 42px;
}

/* FAQ */
.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: white;

  padding: 25px;

  border-radius: 20px;

  margin-bottom: 20px;

  box-shadow: var(--shadow);

  cursor: pointer;

  transition: 0.3s;
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-question {
  font-size: 20px;
  font-weight: 600;
}

.faq-answer {
  margin-top: 15px;

  color: #666;

  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CONTACT */
.contact-section {
  padding-top: 0;
}

.contact-card {
  background: linear-gradient(90deg, var(--primary), var(--secondary));

  color: white;

  text-align: center;

  padding: 60px 40px;

  border-radius: 30px;
}

.contact-card h2 {
  font-size: 42px;

  margin-bottom: 20px;
}

.contact-card p {
  margin-bottom: 30px;
}

.contact-card button {
  padding: 16px 30px;

  border: none;
  border-radius: 50px;

  background: white;
  color: var(--primary);

  font-weight: 600;

  cursor: pointer;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: white;

  text-align: center;

  padding: 60px 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 45px;
  }

  .navbar {
    flex-direction: column;
    gap: 20px;
  }
}
