   .services-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/services-hero.jpg');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .services-hero h1 {
            font-size: 3em;
            margin-bottom: 20px;
        }

.services-page {
    padding-top: 100px;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.services-page h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--accent-light);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

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

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Dropdown styles in main CSS */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--primary-color);
    text-decoration: none;
}

.dropdown-content a:hover {
    background: var(--accent-light);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .services-page {
        padding: 80px 20px 40px;
    }
}
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
    font-size: 10px;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    margin-right: 8px;
}

.full-certificate {
    font-size: 16px;
    padding: 12px 24px;
    margin-top: 20px;
    font-weight: bold;
}

.formation-action {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    border-top: 1px solid #eee;
}

.formation-modules li {
    padding: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.service-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 100%;
        margin: 10px 0;
    }
    
    .service-item {
        margin-bottom: 20px;
    }
}