.services-section {
    min-height: 100vh;
    padding: 250px 2rem 4rem;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-content h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: chartreuse;
    box-shadow: 0 0 20px rgba(127, 255, 0, 0.3);
}

.service-card i {
    font-size: 3rem;
    color: chartreuse;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-section {
        padding-top: 200px;
    }
    
    .services-content h1 {
        font-size: 2rem;
    }
} 