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

:root {
  --primary-color: #f03473be;
  --text-color: #333;
  --bg-color: #f9f9f9;
  --font-family: "Montserrat", sans-serif;
  --faq-bg: #ffffff;
  --faq-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  --transition-speed: 0.3s;
  --faq-border-radius: 12px;
  --text-secondary: #666;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}

section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
}

/* FAQ Styles */
.faq {
  background-color: var(--faq-bg);
  border-radius: var(--faq-border-radius);
  box-shadow: var(--faq-shadow);
  padding: 20px 25px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: transform var(--transition-speed) ease;
}

.faq:hover {
  transform: translateY(-3px);
}

.faq h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.faq p {
  display: none;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding-left: 10px;
  border-left: 3px solid var(--primary-color);
  margin-top: 10px;
}

.faq.active p {
  display: block;
}
/* Navbar Base Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
}

/* Hides nav links by default on small screens */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 30px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
  }

  .nav-list.show {
    display: flex;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }
}

/* Show hamburger only on small screens */
.hamburger {
  display: none;
}

/* Responsive */
@media (max-width: 600px) {
  h2 {
    font-size: 1.6rem;
  }

  .faq h3 {
    font-size: 1rem;
  }

  .faq p {
    font-size: 0.9rem;
  }

  
}
