/* .jewellery-faq {
    padding: 90px 20px;
    background: #fff;
}

.faq-container {
    max-width: 1100px;
    margin: auto;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 60px;
    font-family: serif;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.faq-item {
    border-bottom: 1px solid #e6e6e6;
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.7;
    color: #555;

    opacity: 0;
    transform: translateY(-6px);

    transition:
        max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        transform 0.4s ease;

    padding-right: 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px; 
    opacity: 1;
    transform: translateY(0);
    margin-top: 14px;
}

.faq-icon {
    font-size: 22px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}



@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
} */


.faq-luxury {
    padding: 80px 20px;
    background: #fff;
    font-family: 'Georgia', serif;
}

.faq-container {
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.faq-image img {
    width: 100%;
    border-radius: 16px;
}

.faq-title {
    font-size: 36px;
    color:#000000;
    margin-bottom: 12px;
    text-align: center;
}

.faq-subtitle {
    font-size: 15px;
    color: #777;
    max-width: 600px;
    text-align: center;
    margin: 20px auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border-radius: 40px;
    /* border: 1px solid #c7a27a; */
    border:2px solid #101010;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    /* background: #7b4a21; */
    background:#2a2926;
    color: #fff;
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.faq-item.active .faq-question {
    color: #fff;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid currentColor;
    /* border:2px solid rgb(104 7 141); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    border:2px solid white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0;
    transition: all 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-title {
        font-size: 28px;
    }
}

