@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --primary-color: #000000;
  --secondary-color: #333333;
  --text-color: #333333;
  --background-color: #ffffff;
  --hover-color: #666666;
  --accent-color: #ff6b6b;
}

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

body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

/* Navigation Styles */
header {
  background-color: var(--primary-color);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  color: var(--background-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: all 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav ul li {
  margin: 0 1.5rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--accent-color);
}

main {
  padding-top: 80px;
}

/* Original FAQ Styles */
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

h1,
h2 {
  margin-bottom: 1rem;
  text-align: center;
}

.faq-section {
  margin-bottom: 2rem;
  text-align: left;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  text-align: center;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-top: 0.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  height: 0;
  overflow: hidden;
  text-align: center;
}

.faq-answer.active {
  display: block;
  opacity: 1;
  height: auto;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.faq-answer ul {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  max-width: 400px;
  padding-left: 0;
}

.faq-answer li {
  text-align: left;
}

/* Mobile Styles */
@media (max-width: 768px) {

  nav {
    padding: 1rem;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    flex-direction: column;
    padding: 1rem 0;
    width: 100%;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 0;
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    display: block;
    padding: 1rem 0;
  }

  /* Update hamburger animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
  }

  main {
    padding: 8rem 0 4rem;
  }

  .container {
    width: 95%;
    padding: 0 15px;
  }

  .faq-question {
    font-size: 1rem;
    padding-right: 30px;
    position: relative;
  }

  .faq-question::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Improve small mobile styles */
@media (max-width: 480px) {
  .logo {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  nav {
    padding: 0.8rem;
  }
  
  .faq-section {
    margin-bottom: 1.5rem;
  }
}