/* Hero Services */
.hero-services {
    background: linear-gradient(135deg, #1f1f1f, #2b2b2b);
    color: #fff;
    padding: 4rem 5%;
    text-align: center;
}

.hero-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.hero-services p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services {
    padding: 3rem 5%;
    background: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.services h1 {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #222;
}

.services-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #4db5ff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
    text-align: center;
}

.services .services-btn:hover {
    background: #3791d0;
}

.services-downloads {
    text-align: center;
    padding: 2rem 0;
    background-color: #f9f9f9;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-services h2 {
        font-size: 1.8rem;
    }

    .hero-services p {
        font-size: 1rem;
    }
}
