    body, h1, h2, h3, h4, h5, h6, p, ul, li, a, button {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Quicksand", serif;
      scroll-behavior: smooth;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #fff;
      padding: 10px 30px;
      border-bottom: 2px solid #ddd;
      height: 60px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-section {
      display: flex;
      align-items: center;
      height: 100%;
    }

    .header-section:not(:last-child) {
      border-right: 2px solid #ddd;
      padding-right: 15px;
    }

    .header-section.logo {
      flex: 1;
    }

    .logo-link {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-image {
      max-height: 44px;
      width: auto;
    }

    .logo-text {
      font-size: 1.2rem;
      font-weight: 700;
      color: #29B6BF;
      white-space: nowrap;
    }

    .header-section.menu {
      flex: 2;
      justify-content: center;
    }

    .header-section.menu ul {
      display: flex;
      gap: 15px;
      list-style: none;
    }

    .header-section.menu ul li a {
      text-decoration: none;
      color: #333;
      font-size: 18px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      height: 50px;
      border: 2px solid #ddd;
      border-radius: 4%;
      padding: 10px;
      transition: all 0.3s;
    }

    .header-section.menu ul li a:hover {
      background-color: #007bff;
      color: #fff;
      border-color: #007bff;
    }

    .header-section.buttons {
      flex: 1;
      justify-content: flex-end;
      gap: 10px;
    }

   .header-section .btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 16px;
  border: 0px double #29B6BF;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-section .contact-btn:hover {
  background-color: #29B6BF;
  color: #fff;
}

.header-section .btn .icon {
  fill: #29B6BF;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .header-section.buttons {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .header-section.buttons {
    display: none;
  }
}

    /* Mobile Menu */
    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
      background: none;
      border: none;
      margin-left:11px;
    }

    @media (max-width: 768px) {
      header {
        flex-wrap: wrap;
        height: auto;
      }

      .header-section.menu {
        flex: 1;
        justify-content: flex-start;
      }

      .header-section.menu ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: #f9f9f9;
        padding: 15px;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }

      .header-section.menu ul.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }

      .btn {
        padding: 8px 12px;
        font-size: 12px;
      }
    }

/* Hero Section Styling */
.hero-section {
  position: relative;
  height: 250px;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-align: center;
  padding: 20px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #888888;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  z-index: 2;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  z-index: 2;
  max-width: 800px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero-section { height: 200px; }
  .hero-title { font-size: 3rem; margin-bottom: 15px; }
  .hero-description { font-size: 1rem; max-width: 600px; line-height: 1.4; }
}

@media (max-width: 480px) {
  .hero-section { height: 180px; }
  .hero-title { font-size: 2.5rem; margin-bottom: 10px; }
  .hero-description { font-size: 0.9rem; max-width: 500px; line-height: 1.4; }
}

/*-------------------------features----------------------------------*/
.features-section {
  padding: 50px 20px;
  background-color: #EDEDED;
  text-align: center;
}

.f-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.section-description {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.feature-box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  background: linear-gradient(90deg, #673AB7, #4012E0, #06AD50);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.feature-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.feature-description {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

/*-------------------------faq----------------------------------*/
.faq-section {
  padding: 50px 20px;
  background-color: #F8FAFC;
  text-align: center;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
}

.faq-toggle {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
  background-color: inherit;
  color: inherit;
  text-align: left;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.faq-toggle:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.faq-answer {
  padding: 20px;
  background-color: #ffffff;
  display: none;
  color: rgba(0, 0, 0, 0.7);
  text-align: left;
}

.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-toggle { background-color: rgba(0, 0, 0, 0.05); }

@media (max-width: 768px) {
  .faq-item { margin-bottom: 15px; }
  .faq-toggle { font-size: 1rem; }
  .faq-answer { font-size: 0.9rem; }
}

/*-------------------------footer----------------------------------*/
.footer {
  background-color: #2C2C2C;
  color: white;
  padding: 40px 20px;
}

.footer .ft-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 30px;
}

.footer-column {
  margin-bottom: 20px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 15px;
}

.footer-logo {
  max-width: 48px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.footer-contact address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 4px;
}

.footer-about h4,
.footer-menu h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #007bff;
}

.footer-about p,
.footer-menu ul,
.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
}

.footer-menu ul li {
  margin: 8px 0;
}

.footer-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
  color: #FF6F61;
}

@media (max-width: 768px) {
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo-link {
    justify-content: center;
  }
}

/*-------------------------back----------------------------------*/
#backToTopBtn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  background-color: #FFC107;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#backToTopBtn:hover {
  background-color: #FF6F61;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#backToTopBtn.show {
  display: block;
}

/*-------------------------content----------------------------------*/
.content-section {
  padding: 20px 20px;
  background-color: transparent;
  text-align: center;
}

.i-container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-section .containerc {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.content-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #007BFF;
}

.content-article {
  text-align: left;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-article p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
}

.content-paragraphs {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.content-paragraph {
  flex: 1 1 30%;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}

.paragraph-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #FF6F61;
  margin-bottom: 15px;
}

.content-paragraph p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

.step {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #29B6BF;
  margin-bottom: 15px;
}

.step p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .content-paragraphs { flex-direction: column; }
  .content-paragraph { flex: 1 1 100%; }
}

a { text-decoration: none; }
a:hover, a:focus { text-decoration: none; }
