* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: #101114;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: min(900px, 90%);
    text-align: center;
}

header {
    margin-bottom: 45px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    color: #aaa;
    font-size: 1.2rem;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    border: none;
    border-radius: 18px;
    padding: 30px;
    background: #1c1e24;
    color: white;
    display: flex;
    align-items: center;
    gap: 22px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
    background: #272a32;
}

.service-card:active {
    transform: translateY(-2px);
}

.icon {
    width: 65px;
    height: 65px;
    border-radius: 15px;
    background: #30333c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.service-card h2 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.service-card p {
    color: #aaa;
}

footer {
    margin-top: 50px;
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 650px) {
    .buttons {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 2.4rem;
    }
}