/* Styling for the entire FAQ section */
.faq-section {
    max-width: 800px; /* Adjust as needed */
    margin: 20px; /*auto; */1
}

/* Style for each question container */
.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 4px;
}

/* Style for the clickable question (the summary tag) */
.faq-item summary {
    cursor: pointer;
    padding: 15px;
    font-weight: bold;
    list-style: none; /* Hide the default marker */
    position: relative;
    /* This is key to show the + or - */
    padding-left: 30px; 
}

/* Create a custom '+' sign before the question */
.faq-item summary::before {
    content: '+'; 
    position: absolute;
    left: 10px;
    font-size: 1.4em;
    color: #00314a; /* Example color */
    line-height: 1;
    transition: transform 0.3s;
}

/* Change the '+' to a '-' when the details element is open */
.faq-item[open] summary::before {
    content: '-';
    transform: rotate(0deg); /* Optional: Keep the '-' straight */
}

/* Style for the answer content */
.faq-answer {
    padding: 0 15px 15px;
    border-top: 1px solid #eee;
}

.faq-answer p {
    margin: 0;
}