@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

.accordion-container {
     
      margin: 50px 0px 50px;
}

.accordion-item {
    border-bottom: solid 1px #DADADA;;
    background-color: #FFFFFF; /* White background for items */
   
    margin-bottom: 10px;
   
}
.accordion-item:last-child{
    border-bottom: unset;
    background-color: #FFFFFF; /* White background for items */
   
    margin-bottom: 10px;
   
}
.text{
    color: #555959;
leading-trim: both;
text-edge: cap;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 26px; /* 130% */
}
.text2{
    color: #555959;
leading-trim: both;
text-edge: cap;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 26px; /* 162.5% */
}
.text3{
        margin-left: 5px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #383F45;
leading-trim: both;
text-edge: cap;
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.accordion-header {
    background-color: #ffffff; /* Soft purple */
    color: #383F45; /* White text */
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 18px;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #ffffff; /* Darker shade of purple */
}

.accordion-content {
    background-color: #ffffff; /* Very light grey for content */
    overflow: hidden;
    padding: 0 15px;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.accordion-content p {
        width: 80%;
    margin: 15px 0;
    line-height: 1.5;
}

.icon {
    transition: transform 0.3s ease;
}

.active .icon {
    transform: rotate(45deg);
}
