﻿.service-grid-container {
    max-width: 1000px; /* Wider container for the two-column grid */
    margin: auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Slightly deeper shadow */
}

/* 2. Modified Header */
.service-grid-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem); /* Slightly larger heading */
    color: #0B3948; /* Darker, more professional color */
    text-align: center;
    margin-bottom: 15px;
    margin-top: 0;
}

/* 3. Grid Wrapper (Desktop) */
.service-grid {
    /* Use CSS Grid for the two-column layout */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two equal columns */
    gap: 20px 30px; /* Space between rows and columns */
}

/* Fallback/Mobile: Revert to single column */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 0; /* Remove gap for single column list */
    }
}


/* 4. List and List Item Styling */
.servtext ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    /* On grid, ensure the <ul> takes up its space */
    display: contents;
}

    .servtext ul li {
        display: block; /* Important for grid items */
        padding: 0; /* Remove padding from <li> */
        border-bottom: none; /* Remove list item dividers */
        background-color: #f8f9fa; /* Light background for 'card' feel */
        border-radius: 6px;
        padding: 15px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .servtext ul li:hover {
            box-shadow: 0 4px 12px rgba(43, 138, 138, 0.2); /* Subtle hover shadow */
            transform: translateY(-2px);
        }

        .servtext ul li:last-child {
            border-bottom: none;
        }

/* 5. Title and Description Styling */
.service-item-title b {
    font-weight: 700;
    color: #0099D6; /* Highlight color for the service name */
    font-size: clamp(1.2rem, 6vw, 1.2rem);
    display: block; /* Ensure title is on its own line */
    margin-bottom: 5px;
}
.service-item-desc {
    color: #333333;
    font-size: 0.95em;
    line-height: 1.4;
    font-size: clamp(1.2rem, 6vw, 1.2rem);
}


.servtext li b::before {
    content: none;
}
