.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.faq-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #00AFE8;
    font-weight: bold;
    font-size: 16px;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-triangle {
    margin-right: 10px;
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #00AFE8;
}

.faq-triangle.expanded {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 15px;
    background-color: white;
    color: black;
    font-size: 15px;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.expanded {
    max-height: 200px;
    padding: 15px;
}

.faq-answer a {
    color: #00AFE8;
    text-decoration: underline;
}

.faq-answer a:hover {
    text-decoration: none;
}
.faq-item {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
    border-radius: 6px;
    border: none;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}