﻿body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header .divider {
    width: 80px;
    height: 3px;
    background: #0d6efd;
    margin: 0.5rem auto 1rem;
}

.lead {
    color: #555;
}

/* Cards Row */
.cards-row {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    flex: 1;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .service-card .icon-box {
        width: 60px;
        height: 60px;
        background: #0d6efd;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 1rem;
        border-radius: 12px;
        font-size: 1.5rem;
    }

    .service-card h3 {
        margin-bottom: 1rem;
    }

    .service-card ul.features {
        list-style: none;
        padding: 0;
        margin-bottom: 1rem;
    }

        .service-card ul.features li {
            text-align: left;
            padding-left: 25px;
            position: relative;
            margin-bottom: 0.5rem;
        }

        .service-card ul.features i {
            position: absolute;
            left: 0;
            top: 0;
            color: green;
        }

    .service-card p.desc {
        color: #555;
        font-size: 0.95rem;
    }

/* Value Card */
.value-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
    background: #1a1a1a;
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
}

    .value-card .icon-box {
        font-size: 3rem;
        color: #0d6efd;
    }

.value-content h3 {
    margin: 0 0 1rem;
}

.value-content p {
    margin: 0;
    color: #eee;
}
