/* ===== BASE STYLES ===== */
:root {
    --primary: #6537eb;
    --primary-light: #b033db;
    --primary-dark: #d34478;
    --secondary: #fc7152;
    --accent: #fa5a39;
    --accent-light: #e84852;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-heavy: rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--accent-light), var(--accent));
    --radius: 12px;
    --transition: all 0.3s ease;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
      "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    overflow-x: hidden;
    position: relative;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-gradient {
  background: linear-gradient(135deg, #6537eb 0%, #b033db 25%, #d34478 50%, #fc7152 75%, #e84852 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
  
  /* Background Decorative Elements */
  .bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
  
  .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
  }
  
  .shape-1 {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: var(--accent);
}

.shape-2 {
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: var(--primary);
}

.shape-3 {
  top: 40%;
  right: 20%;
  width: 300px;
  height: 300px;
  background: var(--accent-light);
}
  
  /* ===== HEADER STYLES ===== */
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
  }
  
  #header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  #logo {
    width: 36px;
    height: auto;
  }
  
  .site-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #6537eb 0%, #b033db 25%, #d34478 50%, #fc7152 75%, #e84852 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
  
  .main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
  }
  
  .main-nav a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
  }
  
  .main-nav a:hover,
  .main-nav a.active {
    color: var(--primary);
  }
  
  .main-nav a:hover:after,
  .main-nav a.active:after {
    width: 100%;
  }
  
  .download-btn {
  background: var(--gradient-secondary);
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(232, 72, 82, 0.3);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 72, 82, 0.4);
}
  
  .download-btn:after {
    display: none !important;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
  }
  
  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition);
  }
  
  /* ===== FAQ HERO SECTION ===== */
  .faq-hero {
    padding: 180px 0 80px;
    background-color: var(--background-alt);
    text-align: center;
  }
  
  .faq-title {
    font-family: "Poppins", sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
  }
  
  .faq-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* ===== FAQ SECTION ===== */
  .faq-section {
    padding: 80px 0;
  }
  
  .faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .category-btn {
    background: none;
    border: 2px solid var(--border);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .category-btn:hover,
  .category-btn.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-category {
    display: none;
  }
  
  .faq-category.active {
    display: block;
  }
  
  .faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    overflow: hidden;
  }
  
  .faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .faq-question:hover {
    background-color: rgba(66, 133, 244, 0.05);
  }
  
  .faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
  }
  
  .toggle-icon {
    font-size: 24px;
    color: var(--primary);
    font-weight: 300;
    transition: var(--transition);
  }
  
  .faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 500px;
  }
  
  .faq-answer p {
    color: var(--text-light);
    font-size: 16px;
  }
  
  /* ===== CONTACT SUPPORT SECTION ===== */
  .contact-support {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--background-alt);
    border-radius: var(--radius);
  }
  
  .contact-support h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
  }
  
  .contact-support p {
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .support-btn {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    transition: var(--transition);
  }
  
  .support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
  }
  
/* ===== FOOTER ===== */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-branding {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 60px;
  margin-bottom: 20px;
}

.footer-slogan {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.social-icon {
  width: 20px;
  height: 20px;
  color: white;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 150px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary);
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-size: 15px;
  transition: var(--transition);
}

.footer-link:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.contact-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-link:hover {
  color: white;
}
  
  /* ===== RESPONSIVE STYLES ===== */
  @media (max-width: 1024px) {
    .faq-title {
      font-size: 48px;
    }
  }
  
  @media (max-width: 768px) {
    .faq-hero {
      padding: 140px 0 60px;
    }
  
    .faq-title {
      font-size: 40px;
    }
  
    .faq-question h3 {
      font-size: 16px;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: white;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      box-shadow: 0 10px 15px var(--shadow);
    }
  
    .main-nav.active {
      max-height: 300px;
      padding: 20px 0;
    }
  
    .main-nav ul {
      flex-direction: column;
      gap: 15px;
      padding: 0 20px;
    }
  
    .menu-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
  
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
  
    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  }
  
  @media (max-width: 576px) {
    .faq-title {
      font-size: 32px;
    }
  
    .faq-subtitle {
      font-size: 16px;
    }
  
    .category-btn {
      font-size: 14px;
      padding: 8px 16px;
    }
  
    .faq-question {
      padding: 15px 20px;
    }
  
    .faq-answer {
      padding: 0 20px;
    }
  
    .faq-item.active .faq-answer {
      padding: 0 20px 15px;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }
  
  