
    .services-section {
        text-align: center;
        padding: 60px 5%;
    }

    .services-section h2 {
        font-size: 32px;
        margin-bottom: 10px;
        color: #12385b;
    }

    .service-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .service-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .service-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: transform 0.4s ease;
        cursor: pointer;
    }

    .service-card img:hover {
        transform: scale(1.1);
    }

    .service-content {
        padding: 15px;
        text-align: left;
    }

    .service-content h3 {
        font-size: 18px;
        color: #12385b;
        margin-bottom: 10px;
    }

    .service-content p {
        color: #666;
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .service-content a {
        color: #0066cc;
        font-weight: bold;
        text-decoration: none;
        font-size: 14px;
    }

    .service-content a:hover {
        text-decoration: underline;
    }


