/* =========================
   CT Bedfordview - Services Section Styles
   ========================= */

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service {
    background: #f4f4f4;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 4px solid #f57c00;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service h3 {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2e7d32;
}

.service .check {
    color: #2e7d32;
    font-weight: bold;
    margin-right: 0.5rem;
}

.services a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: bold;
}
.services a:visited { color: #2e7d32; }
.services a:hover { color: #f57c00; text-decoration: underline; }
.services a:active { color: #f57c00; }

.service p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}