:root {
    --primary-color: #ff6b35;
    --primary-dark: #e8511e;
    --secondary-color: #2ec4b6;
    --dark-color: #292f36;
    --light-color: #f7f7f7;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.btnss-primary {
    background: var(--gradient);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-primssary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.form-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-control, .form-select {
    padding: 12px 15px !important;
    border-radius: 10px;
    height: auto !important;
    border: 1px solid #e2e2e2;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.checkbox-group {
    margin-bottom: 15px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.required-field::after {
    content: "*";
    color: #dc3545;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .form-section {
        padding: 20px;
    }
}
/* Styles pour le footer avec image */
.footer-container {
display: flex;
justify-content: space-between;
align-items: center;
}

.footer-logo {
max-height: 50px;
width: auto;
}

.footer-text {
flex-grow: 1;
text-align: center;
}

/* Responsive : centrer l'image et le texte sur mobile */
@media (max-width: 768px) {
.footer-container {
flex-direction: column;
gap: 15px;
}

.footer-logo {
order: -1; /* Met l'image en premier */
}

.footer-text {
text-align: center;
}
}