
.tabs {
    overflow: hidden;
    background-color: #f1f1f1;
    margin-bottom: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: start;
    padding: 0;
    margin-left: 0;
}

.tabs button {
    font-size: 20px;
    font-weight: 700;
}

.tablink {
    background-color: #f1f1f1;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 35px;
    transition: 0.3s;
    font-size: 17px;
}

.tablink.active {
    color: #8c743d;
    border-bottom: 2px solid #8c743d;
}

.tabcontent {
    display: none;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.section-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-item img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.section-item h3 {
    margin: 0;
    font-size: 18px;
}



/* accordian  */

:root {
    /* Colors */
    --color-primary: #8c743d;
    --color-text: #545d7a;
    --color-white: #fff;
    --color-title: #242e4c;
    --color-background: #f7f8fb;
    --color-border: #dae1f5;

    /* Fonts */
    --font-family: "Satoshi", sans-serif;
    --fs-sm: 1.4rem;
    --fs-md: 1.6rem;
    --fs-lg: 2.2rem;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;

    /* Transition & Box Shadow */
    --transition: 0.4s ease-in-out;
    --shadow: 0px 60px 56px -12px rgba(9, 40, 163, 0.05);
}

/* html {
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-background);
  font-family: var(--font-family);
  color: var(--color-text);
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
} */

/* .container {
  width: 100%;
  margin: auto;
  min-height: 100vh;
  padding: 2rem;
  display: grid;
  place-items: center;
} */

.accordion__wrapper {
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    border-radius: 2.5rem;
    width: 100%;
    max-width: 60rem;
    padding: 5rem;
}

.totalheading {
    display: flex;
    justify-content: space-between; /* Space out child elements */
    align-items: center; /* Vertically align items in the center */
}

.totalnumber {
    text-align: right;
}

.accordion__title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-title);
    text-align: start;
    margin-bottom: 4rem;
    position: relative; /* Required for positioning the pseudo-element */
}

.accordion__title::after {
    content: "";
    display: block;
    width: 50px; /* Length of the line */
    height: 2px; /* Thickness of the line */
    background-color: var(--color-title); /* Line color */
    position: absolute;
    bottom: -30px; /* Adjust if necessary to position below the text */
    left: 0; /* Aligns the line with the start of the title */
}



.accordion {
    /* border-bottom: 0.1rem solid var(--color-border); */
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
    border: 1px solid #000;

}

.accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.accordion__icon {
    background-color: var(--color-primary);
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--color-white);
    flex-shrink: 0;
}

.accordion__question {
    font-size: var(--fs-md);
    font-weight: var(--fw-medium);
    color: var(--color-title);
}

.accordion__answer {
    padding: 2rem 0;

}

.accordion__content {
    overflow: hidden;
    height: 0;
    transition: var(--transition);
    padding-left: 12px;
    padding-right: 12px;
}

@media screen and (min-width: 580px) {
    .accordion__wrapper {
        padding: 5rem 8rem;
    }
}



.points {
    background-color: #f1f1f1;
    padding: 20px;
    border: 1px solid rgb(218, 214, 214);
    color: black;

}

.points::before {
    content: '';
    display: inline-block;
    width: 16px; /* Set your icon width */
    height: 16px; /* Set your icon height */
    background-image: url('../images/next.png'); /* Path to your icon */
    background-size: contain; /* Adjusts icon size */
    background-repeat: no-repeat; /* Prevents repeating */
    margin-right: 8px; /* Space between icon and text */
}




/* responsive  */
@media (max-width: 768px) {


    .tabcontent p {
        text-align: justify;
    }



}

@media (max-width: 600px) {
    .tabs {
        overflow: hidden;
        background-color: #f1f1f1;
        margin-bottom: 20px;
        margin-top: 20px;
        display: flex;
        justify-content: start;
        padding: 0px;
        margin-left: 0%;
    }

    .tablink {
        background-color: #f1f1f1;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 24px;
        transition: 0.3s;
        font-size: 17px;
    }

    .tabs button {
        font-size: 17px;
        font-weight: 700;
    }

    .totalheading {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .accordion__question {
        /* font-size: var(--fs-md); */
        font-size: 18px !important;
        font-weight: var(--fw-medium);
        color: var(--color-title);
    }
}