:root {
    --primary-green: #2d544e;
    --accent-orange: #e67e22;
    --text-dark: #222;
    --text-light: #666;
    --card-bg: #ffffff;
    --border-color: #eaeaea;
}

/* body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 40px 20px;
    color: var(--text-dark);
} */

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* 3 columns on desktop */
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid #295757;
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background: #295758;
}

.service-card:hover h3 {
    color: #fff;
}

.service-card:hover p {
    color: #fff;
}

/* The Dark Featured Card */
.service-card.featured {
    background-color: var(--primary-green);
    color: #fff;
    border: none;
}

.icon {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-orange);
    fill: none;
    stroke-width: 1.5;
}

.service-card h3 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

/* Faded Background Icon Effect */
.bg-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 120px;
    height: 120px;
    opacity: 0.04;
    pointer-events: none;
}

.featured .bg-icon {
    opacity: 0.1;
    filter: brightness(0) invert(1);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablets */
    }
}

@media (max-width: 650px) {
    .services-container {
        grid-template-columns: 1fr;
        /* 1 column for mobile */
    }

    .service-card {
        padding: 30px;
    }
}