.services-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.service-card.featured .service-icon svg {
    fill: white;
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card.featured h2 {
    color: white;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #637381;
    line-height: 1.6;
}

.service-card.featured p {
    color: rgba(255,255,255,0.9);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    width: 100%;
}

.service-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #637381;
}

.service-card.featured .service-features li {
    color: rgba(255,255,255,0.9);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-card.featured .service-features li::before {
    color: white;
}

.service-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
    margin-top: auto;
}

.service-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.service-btn.featured {
    background: white;
    color: var(--primary-color);
}

.service-btn.featured:hover {
    background: rgba(255,255,255,0.9);
}

.services-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    margin-top: 2rem;
}

.services-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.services-cta p {
    font-size: 1.2rem;
    color: #637381;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn.contact {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-btn.register {
    background: var(--primary-color);
    color: white;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }
}

