/* Styles globaux */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #123c63 !important;
}

/* Boutons */
.btn-primary {
    background-color: #0070F3;
    border-color: #0070F3;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #0058c9;
    border-color: #0058c9;
}

.btn-outline-primary {
    color: #0070F3;
    border-color: #0070F3;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: #0070F3;
    border-color: #0070F3;
}

/* Cards */
.card {
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

/* Sélection de type de projet */
.project-type-card .card {
    border: 2px solid transparent;
    cursor: pointer;
}

.project-type-card .card.border-primary {
    border-color: #0070F3 !important;
}

/* Étapes du processus */
.process-step {
    transition: all 0.3s ease;
}

.process-step:hover {
    background-color: #e6f3ff !important;
}

/* Footer */
footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Animations */
.hero h1, .hero p {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    
    .hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}