*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  margin:0;
  padding: 0;
  scroll-behavior: smooth;
}
.container_feature {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

#features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.icon-box {
  flex: 0 0 calc(25% - 20px); 
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.icon-box:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.icon-box i {
  font-size: 36px;
  margin-bottom: 15px;
}

.icon-box h3 {
  font-size: 18px;
  margin: 0;
}

@media (max-width: 768px) {
  .icon-box {
    flex-basis: calc(50% - 20px); 
  }
}

@media (max-width: 480px) {
  .icon-box {
    flex-basis: 100%; 
  }
}

/*about css*/
.exp {
  margin-top: 30px;
  background-color: skyblue;
  padding: 100px;
}

.exp .text {
  padding: 12px 16px;
  margin: 10px 12px;
  font-size: 24px;
  text-align: justify;
  color: blue;
  text-shadow: 3px 3px 3px white;
}

@media (max-width: 600px) {
  .exp {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }

  .exp .text {
    padding: 8px;
    margin: 0;
    font-size: 14px;
    text-align: center;
    text-shadow: none;
  }
}

/*frequency css*/

.containers {
 /* margin-top: 200px;*/
  max-width: 1200px;
   margin: 0 auto;
  padding: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.faq-list ul {
  list-style: none;
  padding: 0;
}

/* Question styles */
.question {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.question-toggle {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.question-toggle:hover {
  background-color: #e0e0e0;
}

.icon-help {
  font-size: 24px;
  margin-right: 10px;
}

.icon-show, .icon-close {
  transition: transform 0.3s ease;
}

.answer {
  display: none;
  padding: 10px;
  background-color: #ffffff;
  /*border: 1px solid #ddd;*/
  border-radius: 5px;
}

.answer p {
  margin: 0;
}

/* Show answer when question is clicked */
.question-toggle.active + .answer {
  display: block;
}

.question-toggle .icon-close {
  transform: rotate(180deg);
}
/*contact section*/
@media (max-width: 767px) {
    #contact-img {
    height: 200px;
    width:200px;
    }
}
