@charset "UTF-8";
/* CSS Document */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
    font-size: 16px;
}

.faq-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 20px;
    padding: 20px;
}

.faq {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    text-align: left;
    border: none;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.faq-answer {
    background-color: #f9f9f9;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out;
    padding: 0 10px;
}

.faq-answer p {
    margin: 10px 0;
}

.card-header button {
    text-decoration: none;
    color: #007BFF; /* Bootstrap primary color */
}
.card-header button:hover {
    color: #0056b3; /* Darker shade for hover effect */
}
.card-header button {
    text-align: left;       /* Aligns text to the left */
    white-space: normal;    /* Ensures text goes to the next line properly */
    text-overflow: clip;    /* Prevents text from being clipped */
}

.btn-link {
    display: block;         /* Makes the button fill its container */
    width: 100%;            /* Ensures the button takes up all available width */
    overflow: hidden;       /* Keeps the text within the button */
}
h2.mt-4 {
    margin-top: 2rem;  /* Adjust the spacing as needed */
}








