/**

* 2007-2026 PrestaShop

*

* NOTICE OF LICENSE

*

* This source file is subject to the Academic Free License (AFL 3.0)

* that is bundled with this package in the file LICENSE.txt.

* It is also available through the world-wide-web at this URL:

* http://opensource.org/licenses/afl-3.0.php

* If you did not receive a copy of the license and are unable to

* obtain it through the world-wide-web, please send an email

* to license@prestashop.com so we can send you a copy immediately.

*

* DISCLAIMER

*

* Do not edit or add to this file if you wish to upgrade PrestaShop to newer

* versions in the future. If you wish to customize PrestaShop for your

* needs please refer to http://www.prestashop.com for more information.

*

*  @author    PrestaShop SA <contact@prestashop.com>

*  @copyright 2007-2026 PrestaShop SA

*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)

*  International Registered Trademark & Property of PrestaShop SA

*

* Don't forget to prefix your containers with your own identifier

* to avoid any conflicts with others containers.

*/



.agj_faq{

    --agj-primary:#2c2666;

    --agj-secondary:#ee7b6a;

    --agj-bg:#f8eee5;

    --agj-soft:#f6efe5;

    --agj-paper:#ffffff;

    --agj-text:#403b48;

    --agj-muted:#7a7486;

    max-width:1000px;

    margin:90px auto;

    padding:0 20px;

    text-align:center;

}

.agj_faq .eyebrow {

    display: inline-flex;

    align-items: center;

    padding: 6px 16px;

    margin-bottom: 15px;

    border-radius: 999px;

    background: rgba(238, 123, 106, .15);

    color: var(--agj-secondary);

    font-size: .8rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;

}

.agj_faq h2{

    margin:0 0 40px;

    color:var(--agj-primary);

    font-size:clamp(2rem,4vw,2.8rem);

    font-weight:800;

    text-align:center;

}

.agj_faq .faq{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.agj_faq .faq-item{

    background:var(--agj-paper);

    border-radius:20px;

    border:1px solid rgba(44,38,102,.08);

    overflow:hidden;

    transition:.3s;

    box-shadow:0 8px 25px rgba(44,38,102,.05);

}

.agj_faq .faq-item:hover{

    border-color:rgba(238,123,106,.4);

    box-shadow:0 15px 35px rgba(44,38,102,.08);

}

.agj_faq .faq-q{

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:22px 25px;

    color:var(--agj-primary);

    font-size:1.05rem;

    font-weight:700;

    transition:.25s;

}

.agj_faq .faq-item.active .faq-q{

    color:var(--agj-secondary);

}

.agj_faq .faq-toggle{

    width:38px;

    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#f6efe5;

    transition:.35s;

}

.agj_faq .faq-toggle svg{

    width:18px;

    height:18px;

    transition:.35s;

}

.agj_faq .faq-item.active .faq-toggle{

    background:#ee7b6a;

    color:white;

}

.agj_faq .faq-item.active .faq-toggle svg{

    transform:rotate(45deg);

}

.agj_faq .faq-a{

    max-height:0;

    overflow:hidden;

    padding:0 25px;

    color:var(--agj-text);

    line-height:1.8;

    text-align:left;

    transition:

        max-height .4s ease,

        padding .35s ease;

}

.agj_faq .faq-item.active .faq-a{

    max-height:500px;

    padding:0 25px 24px;

}

.agj_faq .faq-a a{

    color:var(--agj-secondary);

    font-weight:600;

    text-decoration:none;

}

.agj_faq .faq-a a:hover{

    color:var(--agj-primary);

}



@media(max-width:768px){

    .agj_faq{

        margin:70px auto;

    }

    .agj_faq .faq-q{

        padding:18px;

        font-size:1rem;

    }

    .agj_faq .faq-item.active .faq-a{

        padding:0 18px 20px;

    }

}