body {
    background-color: skyblue;
}

/* Styles pour les sections de territoire */
.territoire-section {
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.territoire-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.territoire-title {
    color: #495057;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.territoire-title i {
    color: #6c757d;
}

.territoire-divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #007bff, transparent);
    margin: 0;
}

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