/* BOX SERVICES */
    .services_grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 16px;
    }
    
    .service_card {
        background: var(--light-white);
        border-radius: 16px;
        padding: 28px 26px;
        transition: border-color 0.25s, background 0.25s, transform 0.2s;
        position: relative;
        overflow: hidden;
    }
    
    .service_icon {
        width: 45px; height: 45px;
        background: var(--second);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        margin-bottom: 16px;
        i{
            color: var(--white);
            font-size: 25px;
        }
    }
    
    .service_card h3 {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .service_card p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    
    .service_features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 7px;
    }
    
    .service_features li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
    }
    
    .service_features li::before {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--second);
        flex-shrink: 0;
    }
/* BOX SERVICES */

/* FORMATS */
    .formats_grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 16px;
    }
    
    .format_card {
        background: var(--light-white);
        border-radius: 16px;
        padding: 22px 20px;
        transition: border-color 0.2s, transform 0.2s;
    }
    
    .format_icon {
        width: 45px; height: 45px;
        background: var(--second);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        margin-bottom: 16px;
        i{
            color: var(--white);
            font-size: 25px;
        }
    }
    
    .format_card h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
    }
    
    .format_card p {
        font-size: 12px;
        line-height: 1.55;
    }
/* FORMATS */