﻿/* HERO */
#content-wrapper-ac-1 {
    background: #f2f6ff ;
    font-family: "Poppins", sans-serif !important;
}

.hero-ac {
    /*background: linear-gradient(135deg, #003b73 0%, #0059c9 100%);*/
    background: #308fe8;
    text-align: center;
    padding: 35px 20px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

    .hero-ac h2 {
        color: #fff;
        font-size: 40px;
        margin-top: 0;
        margin-bottom: 10px;
        font-weight: 700;
        line-height: 1.35;
    }

    .hero-ac p {
        color: #fff;
        font-size: 18px;
        opacity: 0.95;
        max-width: 700px;
        margin: auto;
    }

/* GRID CARDS */
.container-ac {
    width: 90%;
    margin: auto;
    padding: 60px 0;
}

.grid-ac {
    margin-top:20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
}

.card-ac {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border: 1px solid #dce7fb;
}

    .card-ac:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    .card-ac img {
        /*width: 355px;
        height: 255px;*/
        /*object-fit: cover;*/
    }

.card-content-ac {
    padding: 22px 25px 30px;
}

    .card-content-ac h3 {
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 600;
        color: #003b73;
        line-height: 1.5;
    }

    .card-content-ac p {
        font-size: 15px;
        color: #5878a8;
        line-height: 1.5;
        margin-bottom: 12px;
    }

.tag-ac {
    display: inline-block;
    padding: 5px 12px;
    font-size: 13px;
    background: #e1edff;
    color: #003b73;
    border-radius: 6px;
    font-weight: 500;
    margin-bottom: 12px;
}
