﻿#services-index-header {
    text-align: center;
    color: white;
}

    #services-index-header h1 {
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 700;
        margin: 0;
        padding: 2.5rem 0;
    }

#services-index-content {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
}

#service-menu-container {
    margin-top: auto;
    margin-bottom: auto;
}

#service-menu-header {
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 6.5rem;
}

.service-index-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem 1.5rem;
    margin-top: 0.66rem;
    margin-bottom: 0.66rem;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

    .service-index-card:hover {
        transform: scale(1.015);
        box-shadow: 0 3px 8px rgba(255, 255, 255, 0.9);
    }

    .service-index-card h2 {
        font-weight: 650;
        font-size: 2rem;
        margin: 0;
    }

    .service-index-card i {
        font-size: 1.75rem;
    }

    .service-index-card a {
        text-decoration: none;
        color: inherit;
        outline: 0;
        cursor: pointer;
    }

    .service-index-card img {
        max-height: 50px;
    }

.service-index-card-icon {
    max-height: 50px;
}

@media (max-width: 576px) {
    #services-index-header h1 {
        font-size: 2.5rem;
        padding: 1.5rem 0;
    }

    #service-menu-header {
        font-size: 3rem;
    }

    .service-index-card {
        padding: 1rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

        .service-index-card h2 {
            font-size: 1.5rem;
        }
}
