
/* ==========================================
   COA Example Page
========================================== */

.prg-section-heading{
    max-width:760px;
}

.prg-section-heading p{
    color:var(--prg-muted);
    line-height:1.8;
    margin-top:18px;
}

/* ==========================================
   Four Point Cards
========================================== */

.prg-coa-feature{
    background:var(--prg-warm-white);
    border:1px solid var(--prg-stone);
    border-radius:4px;
    padding:18px;
    text-align:center;
    height:100%;
    transition:.35s;
    box-shadow:0 6px 20px rgba(0,0,0,.03);
}

.prg-coa-feature:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.prg-coa-feature i{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 22px;
    border-radius:50%;
    background:rgba(167,122,69,.12);
    color:var(--prg-gold);
    font-size:28px;
}

.prg-coa-feature h3{
    margin-bottom:14px;
    font-size:24px;
}

.prg-coa-feature p{
    margin:0;
    color:var(--prg-muted);
    line-height:1.8;
}

/* ==========================================
   Sample COA
========================================== */

.prg-coa-sample{
    background:var(--prg-soft-gray);
}

.prg-coa-sample h2{
    margin-bottom:20px;
}

.prg-coa-sample p{
    color:var(--prg-muted);
    line-height:1.9;
}

.prg-coa-points{
    list-style:none;
    padding:0;
    margin:30px 0 0;
}

.prg-coa-points li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    color:var(--prg-text);
    font-weight:500;
}

.prg-coa-points i{
    color:var(--prg-gold);
}

.prg-coa-preview{
    background:#fff;
    border:1px solid var(--prg-stone);
    border-radius:4px;
    padding:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.prg-coa-preview img{
    width:100%;
    display:block;
    border-radius:8px;
}

/* ==========================================
   Information Note
========================================== */

.prg-coa-note{
    display:flex;
    align-items:flex-start;
    gap:22px;
    background:var(--prg-warm-white);
    border:1px solid var(--prg-stone);
    border-left:4px solid var(--prg-gold);
    border-radius:4px;
    padding:34px;
}

.prg-coa-note i{
    font-size:30px;
    color:var(--prg-gold);
    margin-top:4px;
}

.prg-coa-note h3{
    margin-bottom:12px;
}

.prg-coa-note p{
    margin:0;
    color:var(--prg-muted);
    line-height:1.8;
}

/* ==========================================
   CTA
========================================== */

.prg-contact-cta{
    background:var(--prg-charcoal);
    border-radius:12px;
    padding:50px 55px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.prg-contact-cta h2{
    color:var(--prg-ivory);
    margin-bottom:18px;
}

.prg-contact-cta p{
    color:rgba(255,255,255,.82);
    margin:0;
    line-height:1.8;
    max-width:680px;
}

.prg-contact-cta .prg-button{
    white-space:nowrap;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width:991px){

    .prg-coa-feature{
        padding:30px 22px;
    }

    .prg-coa-preview{
        margin-top:20px;
    }

    .prg-coa-note{
        flex-direction:column;
    }

    .prg-contact-cta{
        flex-direction:column;
        align-items:flex-start;
        padding:40px 30px;
    }

    .prg-contact-cta .prg-button{
        width:100%;
        text-align:center;
    }

}

@media (max-width:767px){

    .prg-coa-feature h3{
        font-size:22px;
    }

    .prg-coa-note{
        padding:26px;
    }

    .prg-coa-preview{
        padding:10px;
    }

}