* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary: #ee4d2d;
  --secondary: #ff7337;
  --dark: #111827;
  --light: #f5f5f5;
}

body {
  background: var(--light);
  color: #222;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  background: white;

  padding: 20px 7%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.logo {
  font-size: 32px;
  font-weight: 800;

  color: var(--primary);

  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #222;

  font-weight: 500;
}

/* HERO */
.hero {
  min-height: 60vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 150px 7% 80px;

  background: linear-gradient(120deg, #fff7f5, white);
}

.hero-content h1 {
  font-size: 60px;

  margin-bottom: 20px;
}

.hero-content p {
  max-width: 700px;

  color: #666;

  line-height: 1.8;
}

/* SUPPORT */
.support-section {
  padding: 100px 7%;
}

.support-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;
}

.support-card {
  background: white;

  padding: 40px 30px;

  border-radius: 25px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.support-card:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 60px;

  margin-bottom: 20px;
}

.support-card h3 {
  margin-bottom: 15px;
}

.support-card p {
  color: #666;

  line-height: 1.7;

  margin-bottom: 25px;
}

.support-btn {
  padding: 14px 25px;

  border: none;
  border-radius: 50px;

  background: var(--primary);
  color: white;

  cursor: pointer;

  font-weight: 600;
}

/* FAQ */
.faq-section {
  padding: 100px 7%;
}

.faq-section h2 {
  text-align: center;

  font-size: 45px;

  margin-bottom: 50px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: white;

  margin-bottom: 20px;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;

  padding: 25px;

  border: none;

  background: white;

  display: flex;
  justify-content: space-between;
  align-items: center;

  cursor: pointer;

  font-size: 18px;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: 0.3s;
}

.faq-answer p {
  padding: 0 25px 25px;

  color: #666;

  line-height: 1.7;
}

/* FOOTER */
footer {
  background: var(--dark);

  color: white;

  text-align: center;

  padding: 60px 20px;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .navbar {
    flex-direction: column;
    gap: 20px;
  }
}
