
/* MAIN CONTENT */
.lead-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* SERVICE GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    border-radius: 8px;
}

.service-card h3 {
    margin: 12px 0 6px;
    color: #005bac;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
}

.card-middle {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 10px auto;
    display: block;
}

/* PROCESS */
.process-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.process-step {
    background: #e8f0ff;
    padding: 20px;
    border-radius: 10px;
}

.process-step h4 {
    margin-bottom: 10px;
    color: #005bac;
}

/* CTA */
.cta-box {
    margin-top: 40px;
    text-align: center;
}

.cta-box a {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .service-grid,
    .process-box {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

@media (max-width: 600px) {
    .service-grid,
    .process-box {
        grid-template-columns: 1fr;
    }

    .cta-box a {
        font-size: 16px;
        padding: 12px 20px;
    }
}
