body {
    background-color: #0b1f3a;
    color: white;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
  }
  
  .faq-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
  }
  
  .faq-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #eca440;
    margin-bottom: 30px;
  }
  
  .faq-item {
    background-color: #1a222c;
    border: 1px solid #2a2f36;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
  }
  
  .faq-item h3 {
    margin: 0;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 1.1rem;
    color: #f2f2f2;
  }
  
  .faq-item h3:hover {
    color: #eca440;
  }
  
  .faq-item p {
    padding: 18px 20px;
    margin: 0;
    display: none;
    color: #ccc;
  }
  
  .faq-item.active p {
    display: block;
  }
  
  a {
    color: #eca440;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  

/*  FOOTER ====================================*/

/* General link styling */
.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  /* Base footer styles */
  footer {
    background-color: #000;
    color: #ccc;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.95rem;
  }
  
  footer a {
    color: #fff;
  }
  
  footer a:hover {
    color: #000; /* Black on hover */
    text-decoration: none;
  }
  
  /* Heading styles */
  footer h6 {
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  /* Icon colors (base) */
  footer i.fas,
  footer i.fab {
    color: #eca440;
  }
  
  /* Social buttons container */
  footer .contact-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
  }
  
  /* Individual social buttons */
  footer .contact-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  
  /* Hover effect for social buttons */
  footer .contact-socials a:hover {
    background-color: #eca440;
    border-color: #eca440;
    color: #000; /* Ensure icon turns black */
  }
  
  footer .contact-socials a:hover i.fab {
    color: #000; /* Ensure <i> inside also turns black */
  }
  
  /* Responsive behavior for social buttons */
  @media (min-width: 768px) {
    footer .contact-socials {
      justify-content: flex-start;
    }
  }
  
  @media (max-width: 767px) {
    footer .contact-socials {
      justify-content: center;
    }
  }
  
  /* Copyright section */
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #999;
  }
  
  .footer-bottom .brand {
    color: #eca440;
    font-weight: bold;
  }
  
  
  