 
/** @media(max-width:1000px){

.grid-3{ grid-template-columns:1fr; }
.grid-4{ grid-template-columns:1fr 1fr; }

}

@media(max-width:768px){ **/

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: linear-gradient(90deg,#4a148c,#7b1fa2);
  color:#fff;
  position: relative;
}

.logo img {
  max-width: 95px;
  height: auto;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #400642;
}

/* CONTACT SECTION */
.contact-container {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.contact-form,
.contact-info {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.btn {
  padding: 10px 20px;
  cursor: pointer;
}

/* FAQ */
.box {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 12px 0;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

/* =========================
   📱 MOBILE STYLES
========================= */

@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 60vh;
    width: 180px;
   /** background: #110f0f;  **/
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    transition: 0.4s ease;
    z-index: 1000;
  }

  .nav-links a {
    color: #ceb7b7;
    font-size: 16px;
    font-weight: bold;  
    text-decoration: none;
    /** padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.7);  **/
  }

  .nav-links.active {
    right: 10px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 1);
  }

  .nav-item {
    width: 100%;
  }

  .dropdown > a {
    width: 100%;
    justify-content: space-between;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding-left: 15px;
    background: transparent;
  }

  .dropdown:hover .submenu {
    display: block;
  }

  .submenu a {
    padding: 8px 0;
  }

  /* HAMBURGER */
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1100;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 2px 0;
    transition: 0.3s;
  }

  /* Animate to X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* HERO TEXT */
  .hero-content h1 {
    font-size: 24px;
    text-align: center;
  }

  .hero-content p {
    font-size: 14px;
    text-align: center;
  }

  /* CARDS STACK */
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  /* FOOTER */

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-subscribe,
  .footer-links,
  .social-links {
    align-items: center;
  }

  .footer-subscribe input {
    width: 100%;
    max-width: 260px;
  }

  /** footer {
    text-align: center;
    padding: 30px 20px;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-links,
  .social-links {
    position: static;
    align-items: center;
    margin-top: 20px;
  }

 .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
  }      **/

  section h2 {
    font-size: 22px;
  }

  .accordion-header {
    font-size: 16px;
    padding: 12px;
  }

  .accordion-content {
    font-size: 15px;
  }

  .accordion-content img {
    max-width: 100%;
  }
}

