.elementor-270 .elementor-element.elementor-element-83f34a3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-270 .elementor-element.elementor-element-9a9d7d0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-25d7275 *//* FAQ THEME VARIABLES */
:root {
    --maroon-deep: #5D1A1A;
    --gold-solid: #D4AF37;
    --bg-color: #F8F4E6;
    --white: #ffffff;
    --text-dark: #2C1B18;
    --text-grey: #555;
    --border-light: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
}

/* HERO SECTION */
.faq-hero {
    text-align: center;
    padding: 80px 20px 100px;
    background: linear-gradient(135deg, #1a1005 0%, #2C1B18 100%);
    border-bottom: 5px solid var(--gold-solid);
    color: var(--white);
}

.hero-icon {
    font-size: 3.5rem;
    color: var(--gold-solid);
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #ccc;
}

/* CONTAINER */
.faq-container {
    max-width: 900px;
    margin: -60px auto 80px;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.intro-text {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-grey);
    margin-bottom: 40px;
    padding: 0 20px;
}

.intro-text a {
    color: var(--maroon-deep);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-solid);
}

/* CATEGORY TITLE */
.category-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--maroon-deep);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px dashed rgba(212, 175, 55, 0.4);
}

/* FAQ ACCORDION ITEMS */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    background: #fdfdfd;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--gold-solid);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-family: 'Alegreya', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question i {
    color: var(--gold-solid);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-question.active {
    color: var(--maroon-deep);
    background: rgba(212, 175, 55, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fff;
}

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 1.05rem;
    color: var(--text-grey);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--maroon-deep);
    font-weight: bold;
    text-decoration: none;
}
.faq-answer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-container {
        padding: 30px 20px;
        width: 92%;
        margin-top: -40px;
    }
    .faq-question {
        font-size: 1.15rem;
        padding: 15px;
    }
    .category-title {
        font-size: 1.5rem;
    }
}/* End custom CSS */