.services-hero {
    background-color: #800020;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-hero p {
    font-size: 1.4rem;
    color: #DAA520;
    font-weight: 500;
}

.services-grid-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    width: 48%;
    min-width: 280px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    font-size: 40px;
    color: #DAA520;
    margin-bottom: 20px;
}

.service-card h2 {
    color: #800020;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-grid-section {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
    }
}