.cst-footer-seals {
    padding: 0 24px 62px;
}

.cst-footer-seals-inner {
    max-width: 1280px;
    margin: 0 auto;
    border: 1px solid rgba(212,175,55,.20);
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 0%, rgba(212,175,55,.10), transparent 44%),
        linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
        rgba(2,18,38,.26);
    padding: 38px 34px 34px;
    box-shadow: 0 28px 70px rgba(0,0,0,.18);
}

.cst-footer-seals-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.cst-footer-seals-heading h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 25px;
    line-height: 1.22;
    font-weight: 850;
    letter-spacing: -.035em;
}

.cst-footer-seals-heading p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.68;
}

.cst-footer-seals-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 20px;
}

.cst-footer-seal-card {
    min-height: 230px;
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,.028);
    border: 1px solid rgba(212,175,55,.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    text-align: center;
    transition: all .35s ease;
}

.cst-footer-seal-card:hover {
    border-color: rgba(212,175,55,.32);
    background: rgba(255,255,255,.04);
    transform: translateY(-4px);
}

.cst-footer-seal-logo-wrap {
    width: 100%;
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cst-footer-seal-logo {
    display: block;
    max-width: 250px;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cst-footer-seal-card p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 300px;
}

@media (max-width:1024px){

    .cst-footer-seals-grid{
        grid-template-columns:1fr;
    }

    .cst-footer-seal-card{
        min-height:210px;
    }

}

@media (max-width:767px){

    .cst-footer-seals{
        padding:0 20px 48px;
    }

    .cst-footer-seals-inner{
        padding:30px 20px 24px;
        border-radius:28px;
    }

    .cst-footer-seals-heading{
        margin-bottom:26px;
    }

    .cst-footer-seals-heading h3{
        font-size:25px;
        line-height:1.18;
    }

    .cst-footer-seals-heading p{
        font-size:14.5px;
    }

    .cst-footer-seals-grid{
        gap:16px;
    }

    .cst-footer-seal-card{
        min-height:190px;
        padding:24px 18px;
        gap:18px;
    }

    .cst-footer-seal-logo-wrap{
        min-height:92px;
    }

    .cst-footer-seal-logo{
        max-width:245px;
        max-height:100px;
    }

    .cst-footer-seal-card p{
        font-size:14px;
        line-height:1.55;
    }

}