* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.header {
  background: linear-gradient(to right, #bdf2f9, #ffffff);
  color: blue;
  padding: 2rem;
  text-align: center;
  font-size: 1.5rem;
}

.header p{
  color: #150e42;
  font-weight: 500;
}

.faq-container {
  /* max-width: 800px; */
  margin: 2rem auto;
  padding: 0 1rem;
}

.faq-item {
  background: #fff;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-size: 1rem;
}

.question {
  margin: 0;
  cursor: pointer;
  position: relative;
}

.answer {
  margin-top: 0.5rem;
  display: none;
  color: #555;
}


.contact-support {
  background: #fff;
  padding: 20px;
  border-left: 5px solid #121c45;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.contact-support h2{
   font-size: 1.5rem;
   color: #04265e;
}

.contact-support a {
  color: #007bff;
  text-decoration: none;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 20px;
  background-color: #afddf9;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.whatsapp-btn:hover {
  background-color: #0d0a61;
  color: #aaa;
}


@media (max-width: 480px) {
  .header {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .contact-support h2{
   font-size: 1.2rem;
   color: #04265e;
}

  .faq-container {
    margin: 1rem auto;
    padding: 0 0.5rem;
  }

  .faq-item {
    font-size: 0.6rem;
    padding: 0.8rem 0.9rem;
  }

  .contact-support {
    padding: 12px;
  }

  .whatsapp-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}



.footer {
  background-color: #05011c;
  color: #ccc;
  padding: 30px 20px 10px;
  font-size: 14px;
  text-align: center; /* Ensures text aligns center by default */
}

.footer a {
  text-decoration: none;
  color: #ccc;
}

.footer a:hover {
  color: #fff;
}

/* .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
} */

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Changed from space-between */
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto; /* Centering the content */
}


.footer-logo {
  max-width: 220px;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 13px;
  line-height: 1.4;
  color: #aaa;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-section h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 20px;
}

.footer-social a span {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-social a:hover span {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #333;
  padding-top: 15px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-logo p {
  font-size: 12px;
}

  .footer-social {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-social a {
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 12px;
    padding-top: 10px;
  }
}

