.title {
    background-image: url('../../images/aff-hero.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 110px 20px;
}

.title h1 {
    color: #ffffff;
    font-weight: 800;
}

.title p {
    color: #ffffff;
    font-size: 1.245rem;
}

.title .aff-button a {
    background-color: #f49c06;
    padding: 8px 25px;
    color: #ffffff;
}

.promote {
    padding: 50px 20px;
}

.section-heading h2 {
    text-align: center;
    font-weight: 800;
}

.promote .process {
    padding-top: 50px;
}

.process-box {
    padding: 10px 15px;
}

.process-box .pb-icon { 
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.process-box .pb-title h3 {
    text-align: center;
    font-weight: 800;
}

.process-box .pb-description p {
    text-align: center;
    font-size: 1.15rem;
}

.benefits {
    background-color: #f5f5f5;
    padding: 50px 50px;
}

.benefit-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    transition: all 0.2s ease-in-out;
}

.benefit-box:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.benefit-icon i {
    font-size: 2rem;
    color: #f44336;
}

.benefit-box h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.benefit-box p {
    margin-bottom: 0;
    color: #555;
}

.faq {
    background-color: #ffffff;
    padding: 60px 20px;
}

.accordion-item {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.accordion-button {
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 20px;
    color: #212529;
    transition: background-color 0.2s ease-in-out;
}

.accordion-button:not(.collapsed) {
    background-color: #f49c06;
    color: #fff;
}

.accordion-body {
    background-color: #fff;
    padding: 20px;
    font-size: 0.95rem;
    color: #444;
}

