.al-faq-list-9e4a5c09 {
    display: flex;
    flex-direction: column;
    background-color: #fcf6f2; /* Default light warm background matching image */
    border-top: 1px solid #f2e6de;
}

.al-faq-item-9e4a5c09 {
    border-bottom: 1px solid #f2e6de;
}

.al-faq-header-9e4a5c09 {
    display: flex;
    align-items: center;
    padding: 30px 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    gap: 30px;
    text-decoration: none; /* In case it's an a tag */
}

a.al-faq-header-9e4a5c09:hover,
a.al-faq-header-9e4a5c09:focus {
	text-decoration: none;
}

.al-faq-header-9e4a5c09:hover {
    background-color: rgba(0,0,0,0.02);
}

.al-faq-number-9e4a5c09 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f6e9e4;
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

.al-faq-question-9e4a5c09 {
    flex-grow: 1;
    font-family: 'Playfair Display', serif; /* Elegant serif as default */
    font-size: 22px;
    color: #2c2c2c;
    line-height: 1.4;
}

.al-faq-action-wrapper-9e4a5c09 {
    flex-shrink: 0;
}

.al-faq-action-9e4a5c09 {
    font-size: 14px;
    color: #c35c5c;
    font-weight: 600;
    text-transform: none;
    border-bottom: 1px solid #c35c5c;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.al-faq-header-9e4a5c09:hover .al-faq-action-9e4a5c09 {
    opacity: 0.8;
}

/* Modal Styles */
.al-faq-modal-9e4a5c09 {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.al-faq-modal-active-9e4a5c09 {
    display: flex !important;
}

.al-faq-modal-content-9e4a5c09 {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: auto;
    background-color: #000;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.al-faq-modal-close-9e4a5c09 {
    color: white;
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.al-faq-modal-close-9e4a5c09:hover,
.al-faq-modal-close-9e4a5c09:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.al-faq-video-container-9e4a5c09 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.al-faq-video-container-9e4a5c09 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .al-faq-header-9e4a5c09 {
        padding: 20px;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .al-faq-question-9e4a5c09 {
        font-size: 18px;
        width: calc(100% - 60px);
    }
    
    .al-faq-action-wrapper-9e4a5c09 {
        width: 100%;
        padding-left: 60px; /* Align with question */
        margin-top: 10px;
    }
    
    .al-faq-modal-content-9e4a5c09 {
        width: 95%;
    }
}