@font-face {
  font-family: "HeadingFont";
  src: url("../Fonts/TT Ramillas Trial Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "NormalFont";
  src: url("../Fonts/Quicksand-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  list-style: none;
  text-decoration: none;
  padding: 0;
  box-sizing: border-box;
}

/*******************************************************/
/******************** HEADER STYLES ********************/
/*******************************************************/
header {
  position: fixed;
  top: 0;
  background-color: transparent;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-radius: 0 0 10px 10px;
  margin: 0 auto;
  z-index: 1000;
  font-family: "normalFont", sans-serif;
}

.logo img {
  margin: 10px;
  width: 135px;
  height: 80px;
  background-color: transparent;
}

nav ul {
  display: flex;
}

nav ul li a {
  color: black;
  display: block;
  margin: 0 6px;
  font-weight: 600;
  padding: 10px 20px;
  transition: 0.2s;
  border-radius: 10px;
  font-size: 18px;
}
nav ul li a:hover {
  background-color: #d2eded;
}

nav ul li a.active {
  background-color: #2b7a7a;
  color: #fff;
}

nav .logo {
  display: none;
}

.lines {
  display: none;
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 5px;
  transition: 0.2s;
}
.lines:hover {
  background: #d2eded;
}
.lines div {
  width: 30px;
  height: 3px;
  background: rgb(3, 101, 95);
  margin: 6px 0;
}

img {
  height: 100%;
  width: 100%;
  margin-top: -2px;
  margin-bottom: -2px;
}

.faq-section {
  background-color: #dbc69c;
  padding: 60px 20px;
  margin: 0 auto;
  margin-top: -2px;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #414141;
  font-family: "HeadingFont", sans-serif;
}
.faq-section .faq-box {
  background: white;
  max-width: 800px;
  margin: 0 auto 20px auto;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 5px 5px 0px #9f895f;
  transition: all 0.3s ease;
  font-family: "NormalFont", sans-serif;
}
.faq-section .faq-box .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  color: #2b7a7a;
}
.faq-section .faq-box .faq-question .toggle-icon {
  transition: transform 0.3s ease;
}
.faq-section .faq-box .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-top: 0;
  padding-bottom: 0;
  color: #414141;
}
.faq-section .faq-box.active .faq-answer {
  max-height: 300px;
  padding-top: 10px;
  padding-bottom: 50px;
}
.faq-section .faq-box.active .toggle-icon {
  transform: rotate(45deg);
}

/* Media Queries for viewport width upto 1000px */
@media screen and (max-width: 1000px) {
  nav {
    position: absolute;
    left: -300px;
    top: 0;
    z-index: 99;
    width: 280px;
    height: 100vh;
    background-color: #79C6C6;
    transition: 0.2s;
    box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.05);
  }
  #check_nav:checked ~ nav {
    left: 0;
  }
  nav .logo {
    display: block;
    display: flex;
    align-items: center;
    margin-left: 10px;
  }
  nav ul {
    display: block;
    padding: 0 5px;
    margin-top: 50px;
  }
  nav ul li a {
    margin-bottom: 20px;
    padding: 15px 25px;
    border-radius: 5px;
  }
  .lines {
    display: block;
  }
}
/* Media Queries for viewport width upto 700px */
@media screen and (max-width: 700px) {
  nav .logo {
    display: block;
    display: flex;
    align-items: center;
    margin-left: 5px;
  }
  .logo img {
    margin: 10px;
    width: 115px;
    height: 70px;
    background-color: transparent;
  }
}
@media screen and (max-width: 700px) {
  nav .logo {
    display: block;
    display: flex;
    align-items: center;
    margin-left: 5px;
  }
  .logo img {
    margin: 10px;
    width: 90px;
    height: 50px;
    background-color: transparent;
  }
  header {
    padding: 0 15px;
  }
}
@media screen and (max-width: 400px) {
  nav .logo {
    display: block;
    display: flex;
    align-items: center;
    margin-left: 5px;
  }
  .logo img {
    margin: 10px;
    width: 80px;
    height: 40px;
    background-color: transparent;
  }
  header {
    padding: 0 5px;
  }
}
footer {
  background-color: #dbc69c;
  padding: 40px 20px;
  text-align: center;
  font-family: "NormalFont", sans-serif;
  margin-top: -2px;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-mascot img {
  width: 160px;
  height: auto;
}

.footer-content {
  max-width: 600px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 19px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0f7974;
}

.download-btn {
  background-color: #f3ce84;
  color: #fff;
  padding: 10px 20px;
  margin-bottom: 20px;
  display: inline-block;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid #b5975d;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #b5975d;
}

.footer-social {
  margin-bottom: 15px;
}

.footer-social a {
  text-decoration: none;
  color: #555;
  font-size: 22px;
  margin: 0 12px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #1baca4;
}

.footer-content p {
  color: #666;
  font-size: 0.9rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-mascot img {
    width: 100px;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}/*# sourceMappingURL=style.css.map */