    body, h1, h2, h3, h4, h5, h6, p, ul, li, a, button {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Noto Sans", serif;
      scroll-behavior: smooth;
    }

  
/* Responsive Styling for Small Screens */
@media (max-width: 768px) {
  .hero-section {
    height: 200px; /* Adjust height on smaller screens */
  }

  .hero-title {
    font-size: 3rem; /* Reduce font size for smaller screens */
    margin-bottom: 15px; /* Adjust space between title and description */
  }

  .hero-description {
    font-size: 1rem; /* Reduce font size for smaller screens */
    max-width: 600px; /* Reduce width */
    line-height: 1.4; /* Adjust line height */
  }
}

/* Responsive Styling for Very Small Screens (Mobile) */
@media (max-width: 480px) {
  .hero-section {
    height: 180px; /* Adjust height further for very small screens */
  }

  .hero-title {
    font-size: 2.5rem; /* Reduce font size even more */
    margin-bottom: 10px; /* Adjust space between title and description */
  }

  .hero-description {
    font-size: 0.9rem; /* Further reduce font size */
    max-width: 500px; /* Adjust max-width */
    line-height: 1.4; /* Adjust line height */
  }
}

/*-------------------------features----------------------------------*/
/* General Styling */
.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;
}

/* Feature Grid Styling using CSS Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 items per row */
  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);
}

/* Gradient Feature Title */
.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;
}

/* Icon Styling */
.feature-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

/* Feature Description */
.feature-description {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

/* Responsive Design for Smaller Devices */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on tablets and smaller screens */
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr; /* 1 item per row on mobile screens */
  }
}

/*-------------------------faq----------------------------------*/
/* FAQ Section Styling */
.faq-section {
  padding: 50px 20px;
  background-color: #F8FAFC;
  text-align: center;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

/* FAQ Item Styling */
.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  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; /* Hidden by default */
  color: rgba(0, 0, 0, 0.7);
  text-align:left;
}

/* Show the answer when the FAQ is active */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-item {
    margin-bottom: 15px;
  }

  .faq-toggle {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}


/*-------------------------back----------------------------------*/
/* Styling for the Back to Top button */
#backToTopBtn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  background-color: #1D3B4D;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  display: none; /* Hidden by default */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
#backToTopBtn:hover {
  background-color: #FF6F61;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Show button when scrolled down */
#backToTopBtn.show {
  display: block;
}
/*-------------------------info----------------------------------*/
  /* Content Section Styling */
.content-section {
  padding: 50px 20px;
  background-color: transparent;
  text-align: center;
}

.i-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title Styling */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

/* Section Description Styling */
.section-description {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Paragraphs */
.content-paragraphs {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.content-paragraph {
  flex: 1 1 30%; /* 3 items per row */
  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;
}

/* Steps Section */
.steps {
  margin-bottom: 50px;
}

.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;
}

/* Responsive Design for Smaller Devices */
@media (max-width: 1024px) {
  .content-paragraphs {
    flex-direction: column; /* Stack paragraphs vertically */
  }

  .content-paragraph {
    flex: 1 1 100%; /* Full width for smaller devices */
  }
}

a {
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: none;
}

/* General styles for the content section */
.content-section1 {
  padding: 50px 15px;
  background-color: #fff;
  color: #333;
}

.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; /* Adjust the color as needed */
}

.content-article {
  text-align: left;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0056b3; /* Adjust the color as needed */
}

.content-article p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
}
