body {
    background-color: var(--color-background);
}

.homepage {
    display: grid;
    margin-top: 245px;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.service {
    background: var(--color-button-service);
    color: var(--color-button-service-text, #fff);
    border: none;
    padding: 12px 40px;
    font-size: 1.15rem;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    cursor: pointer;
    border-radius: 8px;
    margin: 10px 0;
    min-width: 200px;
    min-height: 48px;
    max-width: 220px;
    max-height: 52px;
    box-shadow: none;
    transition: background 0.6s, transform 0.2s, box-shadow 0.3s;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.service:hover, .service:focus {
    background: #13b172;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow:none;
    outline: none;
}

