* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    background: linear-gradient(135deg, #0033A0 0%, #FFD100 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
}

.logo-text h1 {
    color: #0033A0;
    font-size: 24px;
    line-height: 1.2;
}

.logo-text p {
    color: #666;
    font-size: 14px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #0033A0;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

nav a:hover {
    color: #FFD100;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url('../../image/slider/image.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    border-bottom: 8px solid #FFD100;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.tagline {
    display: inline-block;
    background-color: #FFD100;
    color: #0033A0;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Main Content */
.content-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: #0033A0;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #FFD100;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.description {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    border-left: 6px solid #FFD100;
}

.description p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.legal-reference {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px dashed #0033A0;
}

.legal-reference p {
    font-size: 16px;
    color: #0033A0;
    font-style: italic;
    margin: 0;
}

/* Solutions Section */
.solutions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.solution-card {
    background-color: rgb(213, 215, 244);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid #0033A0;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.solution-icon {
    background-color: #0033A0;
    color: #FFD100;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.solution-content {
    padding: 25px;
}

.solution-content h3 {
    color: #0033A0;
    margin-bottom: 15px;
    font-size: 22px;
}

.solution-content p {
    color: #666;
}

/* Button Section */
.button-section {
    text-align: center;
    padding: 30px 0;
}

.finance-button {
    display: inline-block;
    background: linear-gradient(to right, #0033A0, #0050d4);
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0, 51, 160, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.finance-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 51, 160, 0.4);
    background: linear-gradient(to right, #FFD100, #FFE566);
    color: #0033A0;
}

.finance-button:active {
    transform: translateY(-2px);
}

.finance-button i {
    margin-left: 10px;
}

/* Footer */
footer {
    background-color: #0033A0;
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #FFD100;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #FFD100;
    bottom: -10px;
    left: 0;
}

.footer-column p, .footer-column a {
    color: #e6e6e6;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #FFD100;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: #FFD100;
    width: 20px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .description {
        padding: 25px;
    }
    
    .finance-button {
        padding: 15px 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 26px;
    }
    
    .solutions-container {
        grid-template-columns: 1fr;
    }
}
/* Conteneur principal pour centrer le contenu */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Styles pour les sections */
.content-section {
    padding: 80px 0;
    width: 100%;
}

/* Section Description - Centrée */
#apropos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Titre de section centré */
.section-title {
    text-align: center;
    color: #0033A0;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #FFD100;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Description centrée */
.description {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    margin: 0 auto 60px;
    border-left: 6px solid #FFD100;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.description p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
    text-align: center;
}

.legal-reference {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px dashed #0033A0;
    text-align: center;
}

.legal-reference p {
    font-size: 16px;
    color: #0033A0;
    font-style: italic;
    margin: 0;
    text-align: center;
}

/* Section Solutions - Centrée */
.solutions-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)), 
                url('chemin/vers/votre/image.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Conteneur des solutions centré */
.solutions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 0 auto 60px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

/* Carte de solution centrée */
.solution-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid #0033A0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.solution-icon {
    background-color: #FFD100;
    color: #FFD100;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.solution-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.solution-content h3 {
    color: #1f149a;
    margin-bottom: 15px;
    font-size: 22px;
    text-align: center;
    width: 100%;
}

.solution-content p {
    color: #666;
    text-align: center;
    width: 100%;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        padding: 0 20px;
    }
    
    .description {
        padding: 25px;
        margin: 0 20px 40px;
    }
    
    .solutions-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .solution-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .solutions-container {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .description p {
        font-size: 16px;
    }
}

/* Option avec Flexbox pour centrage parfait */
.align-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Option avec Grid pour centrage parfait */
.grid-center {
    display: grid;
    place-items: center;
    text-align: center;
}

/* Pour centrer horizontalement uniquement */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Pour centrer le texte */
.text-center {
    text-align: center;
}
/* Section Solutions avec image de fond financière */
.solutions-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)), 
                url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Effet parallaxe */
    position: relative;
    padding: 100px 0;
    text-align: center;
}

/* Version avec overlay bleu */
.solutions-bg.blue-overlay {
    background: linear-gradient(rgba(0, 51, 160, 0.8), rgba(0, 51, 160, 0.85)), 
                url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
}

.solutions-bg.blue-overlay .section-title {
    color: white;
}

.solutions-bg.blue-overlay .solution-card {
    background-color: rgba(255, 255, 255, 0.95);
}