/* Service Area Section */

.service-area {
    background: #f9fafb;
    /* light gray background */
    padding: 60px 20px;
    text-align: center;
}

.service-area h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-area p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.service-area ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
}

.service-area ul li {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.05rem;
    color: #333;
    transition: all 0.3s ease-in-out;
}

.service-area ul li:hover {
    background: #0066cc;
    /* your brand color */
    color: #fff;
    transform: translateY(-5px);
}