.elementor-333 .elementor-element.elementor-element-23deedb{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-333 .elementor-element.elementor-element-b4d00d2{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-b4d00d2 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

/* FAQ Container */
.faq-container {
    min-height: 100vh;
    padding: 60px 0;
    background-color: #FBEADE;
}

.faq-section {
    width: 100%;
}

/* Page Title */
.page-title {
    font-family: 'Belleza', serif;
    font-size: 2.5rem;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

/* FAQ Content Layout */
.faq-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Image Column */
.faq-image-column {
    position: sticky;
    top: 60px;
}

.faq-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(102, 49, 48, 0.1);
    transition: transform 0.3s ease;
}

.faq-image:hover {
    transform: translateY(-4px);
}

/* FAQ Questions Column */
.faq-questions-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* FAQ Items */
.faq-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(102, 49, 48, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(102, 49, 48, 0.12);
    border-left-color: #663130;
}

.faq-question {
    font-family: 'Belleza', serif;
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: #663130;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
}

.faq-answer p {
    font-family: 'Work Sans', sans-serif;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .faq-container {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-image-column {
        position: static;
        order: 2;
    }
    
    .faq-questions-column {
        order: 1;
        gap: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
}

/* Loading Animation */
.faq-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* End custom CSS */