.hero .container {
    padding-bottom: 20px;
}

.service-overview {
    padding: 80px 0 80px 0;
}

.service-overview h2 {
    margin-bottom: 32px;
}

.service-overview p {
    text-align: start;
    line-height: 2;
    font-size: 18px;
    font-weight: 300;

}

.service-content {
    padding: 100px 0;
}

.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.sub-service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f2f2f2;
}

.sub-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.sub-service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sub-service-content {
    padding: 25px;
}

.sub-service-content h4 {
    font-size: 1.25rem;
    color: var(--primary-main);
    margin-bottom: 12px;
    font-weight: 800;
}

.sub-service-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Color Matching Section moved to style.css */