/* FAQ Page Styles */



.faq-hero {
    width: 100%;
    background-image: url('../image/ribena-texture-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 200px 20px;
}

.faq-hero__title {
    color: #FFFFFF;
    font-family: "Gazpacho", serif;
    font-size: 100px;
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
    line-height: 1.1;
    max-width: 900px;
}

.faq-content {
    background-color: #FFF0EE;
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-intro {
    font-family: "ES Rebond Grotesque", sans-serif;
    font-size: 20px;
    color: #333333;
    margin-bottom: 60px;
}

/* Accordion Styles */
.faq-accordion {
    border-top: 1px solid #333333;
}

.faq-item {
    border-bottom: 1px solid #333333;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-family: "ES Rebond Grotesque", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #9B26B6;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Arrow icon placeholder or SVG */
.faq-icon svg {
    width: 100%;
    height: 100%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer-content {
    padding-bottom: 30px;
    font-family: "ES Rebond Grotesque", sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content a {
    color: #333333;
    text-decoration: underline;
    font-weight: 600;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .faq-hero__title {
        font-size: 70px;
    }
}

@media (max-width: 576px) {
    .faq-hero__title {
        font-size: 50px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer-content {
        font-size: 16px;
    }
}

/* Help Categories Styles */
.help-categories {
    background: #9b26b6;
    background: radial-gradient(circle at center, #af33cd 0%, #9B26B6 100%);
    padding: 224px 47px;
    text-align: center;
    color: #FFFFFF;
}

.help-categories__title {
    font-family: "Gazpacho", serif;
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 50px;
}

.help-categories__description {
    font-family: "ES Rebond Grotesque", sans-serif;
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.help-categories__grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.help-categories__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.help-categories__item:hover {
    transform: translateY(-10px);
}

.help-categories__icon-wrapper {
    width: 100px;
    height: 100px;
    background-color: #FFF0EE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9B26B6;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.help-categories__label {
    font-family: "ES Rebond Grotesque", sans-serif;
    font-size: 24px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .help-categories__title {
        font-size: 50px;
    }

    .help-categories__grid {
        gap: 30px;
    }

    .help-categories__icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .help-categories__label {
        font-size: 20px;
    }
}
