﻿.container-top-color {
    max-width: 100%;
    margin: 0 auto;
    background: var(--bs-tertiary);
}

.services-page {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.services-eyebrow {
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.services-page h1 {
    margin-bottom: 1.5rem;
}

.services-intro {
    max-width: 700px;
}

.service-card {
    position: relative;
    padding: 3rem 1.5rem 1.5rem;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: var(--bs-quarternary);
    text-align: center;
}

    .service-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        margin-bottom: 0;
        color: #555;        
    }

    .service-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }

.services-contact-block {
    padding: 2rem 1.5rem;
    max-width: 600px;
}

/* ikon */

.service-icon {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-primary);    
    padding: 15px;
    border-radius: 50%;
}

    .service-icon img {
        width: 40px;
        height: 40px;
    }