body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: aliceblue;
  font-family: "Verdana", sans-serif;
}

#nav {
    background-color: #96A865;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#logo img {
    height: 60PX;
    max-width: 100%;
}

#nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}
.dropdown ul{
    list-style: none;
    padding: 20px 20px;
}
.dropdown ul li{
    margin: 34px 0;
    color: rgb(43, 30, 15);
}
.dropdown ul li {
    margin: 34px 0;
    color: rgb(43, 30, 15);
    cursor: pointer;
}
.dropdown{
    position: absolute;
    background-color: #96A865;
    display: none;
    z-index: 999;
    justify-content: center;
    width: 300px;
    height: 370px;
    margin-left: -200px;
    margin-top: 0px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}
.dropdown.show,
#tools:hover .dropdown,
.dropdown:hover {
    display: flex;
    opacity: 1;
}
.dropdown {
    transition: opacity 0.3s ease 0.5s;
}

#nav-links li a {
    text-decoration: none;
    color: aliceblue;
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(18px, 2vw, 20px);
}

#menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: cornsilk;
}


.container {
  width: 90%;
  max-width: 1200px;
  background-color: #816e6e;
  margin: 20px auto;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 15px;
  border-radius: 10px;
}

.item-link {
  text-decoration: none; /* Remove underline from <a> */
  color: inherit; /* Inherit text color */
  display: grid; /* Make <a> a grid item to respect container's grid */
  width: 100%; /* Fill grid cell width */
  height: 100%; /* Fill grid cell height */
  place-items: center; /* Center the .item div inside <a> */
}

.item {
  background-color: rgb(238, 238, 248);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  width: 100%; /* Ensure .item fills the <a> tag */
  height: 100%; /* Ensure .item fills the <a> tag */
  box-sizing: border-box; /* Account for padding and borders */
}

.item-link:hover .item {
  transform: scale(
    1.05
  ); /* Apply hover effect on .item when .item-link is hovered */
  transition: transform 0.3s ease;
}

.item img {
  width: 60px;
  height: auto;
  margin: 10px auto;
  display: block;
  object-fit: contain;
  image-rendering: crisp-edges;
}

.item h3 {
  margin: 10px 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.item p {
  margin: 0;
  font-size: 14px;
  color: #a3a1a1;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
}

h1 {
  text-align: center;
  margin: 30px 0;
  font-family: "Port Lligat Slab", serif;
  font-size: 2.5rem;
  color: #333;
}

p {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.seo-content {
  width: 90%;
  max-width: 90%;
  margin: auto auto;
  padding: 20px;
  background-color: aliceblue;
  border-radius: 10px;
  text-align: center;
}

.seo-content h2 {
  font-family: "Port Lligat Slab", serif;
  font-size: 2rem;
  color: #333;
  margin: 0 0 15px;
}

.seo-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.faq-content {
  width: 90%;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: aliceblue;
  border-radius: 10px;
  text-align: left;
}

.faq-content h2 {
  font-family: "Port Lligat Slab", serif;
  font-size: 2rem;
  color: #333;
  margin: 0 0 20px;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #333;
  margin: 0 0 10px;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  text-align: left;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.wrapper {
  max-width: 75%;
  margin: auto;
}

.wrapper > p,
.wrapper > h1 {
  margin: 1.5rem 0;
  text-align: center;
}

.wrapper > h1 {
  letter-spacing: 3px;
}

.accordion {
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: clamp(1rem, 2vw + 1rem, 1.3rem);
  width: 100%;
  padding: 2rem 2.5rem;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion i {
  font-size: 1rem;
}

.active,
.accordion:hover {
  background-color: #f1f7f5;
}
.pannel {
  padding: 0 2rem 2.5rem 2rem;
  background-color: white;
  overflow: hidden;
  background-color: #f1f7f5;
  display: none;
}
.pannel p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
  line-height: 1.4;
}

.faq {
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 10px 0;
}
.faq.active {
  border: none;
}
/* =================================== */

footer {
  background: #1e1e1e;
  color: #fff;
  padding: 40px 0 20px; /* Remove 20px side padding */
  margin: 40px 0 0; /* Ensure no horizontal margins */
  width: 100vw; /* Full viewport width */
  position: relative; /* Ensure it breaks out of parent constraints */
  left: 0; /* Align to left edge */
  box-sizing: border-box; /* Include padding in width */
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  text-align: left;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f0f0f0;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  font-size: 20px;
  color: #bbb;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

/* 🔹 Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}

@media (max-width: 768px) {
  #nav {
        height: 50px;
        padding: 0 15px;
    }

    #logo img {
        height: 35px;
    }

    #nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 15px;
        background-color: #333;
        gap: 2px;
        border-radius: 10px;
        width: 200px;
        z-index: 1000;
    }

    #nav-links.active {
        display: flex;
    }

    #nav-links li {
        margin: 10px 0;
    }

    #nav-links li a {
        font-size: clamp(16px, 2.5vw, 18px);
        padding: 10px;
        display: block;
        color: white;
    }

    #nav-links li a:hover {
        background-color: #5f5757;
        border-radius: 6px;
    }

    .dropdown {
        position: absolute;
        top: 0;
        right: 100%;
        width: 200px;
        height: auto;
        margin: 0;
        border-radius: 8px;
        box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
        background-color: rgb(235, 226, 214);
        display: none;
    }

    #tools:hover .dropdown {
        display: block;
    }

    #menu-toggle {
        display: block;
        font-size: clamp(22px, 4vw, 24px);
    }

  .container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px;
  }

  .item-link {
    display: grid; /* Maintain grid behavior */
    width: 100%;
    height: 100%;
    place-items: center;
  }

  .item {
    padding: 8px;
    width: 100%; /* Ensure full width */
    height: 100%; /* Ensure full height */
    box-sizing: border-box;
  }

  .item img {
    width: 50px;
    height: auto;
    object-fit: contain;
    image-rendering: crisp-edges;
  }
.accordion{
  font-size: 19px;
}
  .item h3 {
    font-size: 16px;
  }

  .item p {
    font-size: 12px;
    text-align: center;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .seo-content {
    padding: 15px;
  }

  .seo-content h2 {
    font-size: 1.8rem;
  }

  .seo-content p {
    font-size: 0.9rem;
  }

  .faq-content {
    padding: 15px;
  }

  .faq-content h2 {
    font-size: 1.8rem;
  }

  .faq-item h3 {
    font-size: 1.3rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }

}


@media (max-width: 480px) {
      #nav {
        height: 45px;
        padding: 0 10px;
    }

    #logo img {
        height: 30px;
    }

    #menu-toggle {
        font-size: clamp(20px, 4vw, 22px);
    }

    #nav-links {
        width: 160px;
        right: 10px;
        padding: 5px;
    }
    .accordion {
        font-size: 16px;
    }
  .container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    padding: 8px;
  }

  .item-link {
    display: grid; /* Maintain grid behavior */
    width: 100%;
    height: 100%;
    place-items: center;
  }

  .item {
    padding: 6px;
    width: 100%; /* Ensure full width */
    height: 100%; /* Ensure full height */
    box-sizing: border-box;
  }

  .item img {
    width: 40px;
    height: auto;
    object-fit: contain;
    image-rendering: crisp-edges;
  }

  .item h3 {
    font-size: 14px;
  }

  .item p {
    font-size: 11px;
    text-align: center;
  }

  h1 {
    font-size: 1.8rem;
    margin: 20px 0;
  }

  p {
    font-size: 0.9rem;
  }

  .seo-content {
    padding: 10px;
  }

  .seo-content h2 {
    font-size: 1.6rem;
  }

  .seo-content p {
    font-size: 0.85rem;
  }

  .faq-content {
    padding: 10px;
  }

  .faq-content h2 {
    font-size: 1.6rem;
  }

  .faq-item h3 {
    font-size: 1.2rem;
  }

  .faq-item p {
    font-size: 0.85rem;
  }
}
