/* Styles principaux */
.hero-gradient {
    background: linear-gradient(135deg, rgba(13,71,161,0.9) 0%, rgba(56,142,60,0.9) 100%);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.form-radio:checked {
    background-color: #388E3C;
    border-color: #388E3C;
}