.services {
    background: #efefef;
    padding: 80px 20px;
}

.services .section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #000000;
}

.services .section-desc {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #000000;
    font-size: 16px;
}

.service-category {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-block {
    background: #1e1e1e;
    border-radius: 12px;
    padding: 32px;
    min-height: 350px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-block i {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-block h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #fff;
}

.service-block ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

.service-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.8);
}

.contact-button {
    background: #222;
    color: #fff;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 40px;
}

.contact-button:hover {
    background: #000;
}

@media (max-width: 992px) {
    .service-category {
        grid-template-columns: 1fr;
    }
}