body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0f2c;
    color: #ffffff;
    margin: 0;
    padding: 0;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #0a0f2c;
  }
  
  .logo {
    display: flex;
    align-items: center;
    color: #00f0ff;
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  .icon-shield {
    width: 25px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px #00f0ff);
  }
  
  .nav-links a {
    color: #ffffff;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #00f0ff;
  }
  
  .hero {
    text-align: center;
    padding: 100px 10% 40px;
    background-color: #12193f;
    color: #00f0ff;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00f0ff;
  }
  
  .hero p {
    font-size: 1.1rem;
    color: #ccc;
  }
  
  .faq-section {
    padding: 60px 10%;
  }
  
  .faq-card {
    margin-bottom: 20px;
    background-color: #1b2450;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
    overflow: hidden;
  }
  
  .faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: #00f0ff;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    outline: none;
  }
  
  .faq-answer {
    display: none;
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: #ccc;
  }
  
  .faq-question.active {
    background-color: #12193f;
  }
  
  .cta-help {
    text-align: center;
    padding: 60px 10%;
    background-color: #12193f;
    border-top: 1px solid #00f0ff;
  }
  
  .cta-help h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #00f0ff;
  }
  
  .cta-help a {
    color: #00f0ff;
    text-decoration: underline;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    background: #0a0f2c;
    color: #999;
  }
  #customChatButton {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #00f0ff;
    border-radius: 50%;
    box-shadow: 0 0 15px #00f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
  }
  
  #customChatButton img {
    width: 28px;
    height: 28px;
  }
  .contact-section {
    padding: 80px 10%;
    background-color: #12193f;
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 2rem;
    color: #00f0ff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00f0ff;
  }
  
  .contact-subtext {
    color: #ccc;
    margin-bottom: 30px;
  }
  
  .contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    background: #1c254d;
    color: #fff;
    font-family: inherit;
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #aaa;
  }
  
  .contact-form button {
    background-color: #00f0ff;
    color: #0a0f2c;
    padding: 12px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #00c3cc;
  }@media (max-width: 768px) {
    .cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
    }
  
    .cta-buttons a {
      width: 90%; /* Makes button full-width on mobile */
      text-align: center;
    }
  
    .hero-container {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-left, .hero-right {
      width: 100%;
    }
  
    .hero-image {
      max-width: 90%;
      height: auto;
    }
  }
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px;
    }
  
    .footer-content span,
    .footer-content p {
      display: block;
      margin: 5px 0;
    }
  }
  /* ==== MOBILE RESPONSIVE FIXES ==== */
@media (max-width: 768px) {
    /* Fix hero button overlap */
    .cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      margin-top: 1rem;
    }
  
    .cta-buttons a {
      width: 90%;
      text-align: center;
    }
  
    /* Stack hero text and image */
    .hero-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
      text-align: center;
    }
  
    .hero-left,
    .hero-right {
      width: 100%;
    }
  
    .hero-image {
      max-width: 90%;
      height: auto;
    }
  
    /* Footer fixes */
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px;
    }
  
    .footer-content span,
    .footer-content p {
      display: block;
      margin: 5px 0;
    }
  
    /* Fix text size if needed */
    h2,
    p {
      font-size: 1rem;
    }
  }