.faq-section {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
}

.faq {
    border: 2px solid #000000;
    border-radius: 8px;
    margin: 10px 0;
    overflow: hidden; /* Ensures the border-radius applies to child elements */
    outline: 5px solid;
    margin-bottom: 30px;
    font-weight: 900;

}

.faq summary {
    padding: 15px;
    background-color: #000000;
    color: #333;
    border-bottom: 2px solid;
    list-style: none; /* Removes the default list marker */
    cursor: pointer;
    font-size:x-small;
    line-height: 1.8;
    color: white;

}

.faq summary:hover {
    background-color: #395287c0;
}

.faq summary::marker {
    display: none; /* Removes the default arrow marker */
}

.faq summary::after {
    content: '+';
    float: right;
    font-size: 24px;
    font-weight: 900;
}

.faq[open] summary::after {
    content: '-';
    font-weight: 900;

}

.faq p {
    padding: 15px;
    margin: 0;
    background-color: white;
}







/* old */
/* 


.card{
    background-color: white;
    width: 400px;
    padding: 22px 30px;
    border-radius: 5px;
    line-height: 1.8;
}

#ch{
  display: none;   
}

#ch:checked ~ .content {
    display: block;
}

#ch:checked ~ label {
    display: none;
}

.content{
    display: none;
}
label{
   display: inline-block;
   cursor: pointer;
   color: #fff;
   background-color: rgb(72, 113, 97);
   padding: 3px 13px;
   border-radius: 3px;
   margin-top: 12px;



}

.extra_text{
    display: none;
    
} 


.faq:nth-of-type(1) summary {
    border-top: 4px solid #ffd700; 
}

.faq:nth-of-type(2) summary {
    border-top: 4px solid #ffa500; 
}
.faq:nth-of-type(3) summary {
    border-top: 4px solid #ff69b4; 
}

.faq:nth-of-type(4) summary {
    border-top: 4px solid #6495ed; 
}

.faq:nth-of-type(5) summary {
    border-top: 4px solid #0000ff; 
}







*/


