main {
    background: var(--bg);
}

.small_link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 1rem 2.5rem;
    font-family: var(--normal_fonts);
}

.small_link a {
    text-decoration: none;
    color: black;
}

#hero-banner {
    height: 20rem;
    width: 95%;
    margin: 0 2.5rem;
    background-image: url('../Blogs/BANNER.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay_header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.header_content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    width: 100%;
    font-family: var(--normal_fonts);
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.header_content h1 {
    font-size: 2.5rem;
    /* line-height: 1.3; */
    /* margin-bottom: 1rem; */
}

  .faq-section {
  max-width: 800px;
  margin: auto;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #1a202c;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  padding: 15px 20px;
  background-color: #f3f4f6;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 15px 20px;
  display: none;
  background-color: #ffffff;
  color: #4a5568;
  font-size: 0.95rem;
}


@media screen and (max-width:968px) {
    .small_link {
        padding: 1rem 2rem;
    }

    #hero-banner {
        margin-bottom: 1rem;
        margin: 0 2rem;
    }

}

@media screen and (max-width:830px) {
    .small_link {
        padding: 1rem 1.5rem;
    }

    #hero-banner {
        /* width: 98%; */
        margin: 0 1.5rem;
        margin-bottom: 1rem;
    }

    .header_content h1 {
        font-size: 2rem;
    }
}



@media screen and (max-width:648px) {

    .small_link {
        padding: .5rem 1rem;
    }

    .small_link a {
        font-size: .9rem;
    }

    #hero-banner {
        width: 97%;
        margin: 0 1rem;
        margin-bottom: 2rem;
    }

}

@media screen and (max-width:595px) {
    .overlay_header {
        width: 100%;
    }

    #hero-banner {
        margin: 0;
        margin-bottom: 2rem;
        /* padding: 0 .5rem; */
        width: 100%;
    }
}
