        /* Variables CSS similaires à votre site */
        :root {
            --primary-orange: #fb3c06;
            --primary-orange-hover: #ed8567;
            --text-dark: #144443;
            --text-gray: #666;
            --background-light: #fff2eb;
            --border-light: #dedede;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.5;
            color: var(--text-dark);
            background-color: #fff;
        }

        /* Header similaire à votre site */
        .header {
            background: #fff;
            padding: 20px;
            box-shadow: 5px 1px 4px rgba(51, 51, 51, 0.55);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            max-width: 240px;
            height: auto;
        }

        .back-btn {
            background: var(--primary-orange);
            color: #fff;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: var(--primary-orange-hover);
            transform: translateY(-1px);
        }

          .hero-image {
                flex: 1;
    position: relative;
    max-width: 590px;
    margin-top: 5%;
    margin-left: 5%;
        }
		
		@media (max-width: 1400px) {
    .hero-image {
        /* Ajustez les propriétés selon vos besoins pour cet intervalle de largeur */
        max-width: 1000px!important;  /* Ajustez si nécessaire */
        margin-left: 2%;  /* Exemples de changements */
        margin-right: 2%; 
		margin:auto
    }
}

        /* Section hero similaire à choose-section */
        .hero-section {
display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0 50px;
    gap: 40px;
    width: 90%;
    margin: auto;
    margin-top: 0%;
    font-family: 'Poppins', sans-serif;
        }
		

        .hero-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-image {
            flex: 1;
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
			    margin-top: 5%;
        }

        .section-label {
            color: var(--primary-orange);
            font-weight: 400;
            text-transform: none;
            font-size: 13px;
            margin-bottom: 2%;
        }

        .hero-title {
            font-size: 36px;
            margin: 10px 0;
            line-height: 1.3;
            font-family: 'Forum', serif;
            margin-bottom: 5%;
            color: #144443;
        }
		
		.salary-container h2{
		color: #144443 !important;}

        .hero-subtitle {
            margin-bottom: 30px;
            color: #144443;
            font-size: 14px;
        }

        /* Section verte similaire */
        .info-section {
            background: #ffba9914;
            margin-top: 2%;
        }

        .container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            
            max-width: 80%;
            margin: 0 auto;
        }

        .left-content {
            flex: 1;
            max-width: 50%;
        }

        .left-content h2 {
            font-family: 'Forum', serif;
            margin-bottom: 5%;
            color: #144443;
            font-size: calc(1.325rem + 0.9vw);
        }

        .text {
            font-size: 13px;
            line-height: 23px;
            margin-bottom: 30px;
            color: var(--text-dark);
            font-family: 'Poppins', sans-serif;
        }

        .right-content {
            flex: 1;
            max-width: 40%;
        }

        /* Cards stats avec données réelles */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .stat-card {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
font-size: 1.8em;
            font-weight: bold;
            color: #144443;
            display: block;
            font-family: Poppins
        }

        .stat-label {
            color: var(--text-gray);
            font-size: 13px;
            margin-top: 5px;
            font-family: 'Poppins', sans-serif;
        }

        /* Compétences section */
        .skills-section {
            background: #fff;
            padding: 50px 10%;
        }

        .skills-container {

            margin: 0 auto;
        }

        .skills-title {
            font-family: 'Forum', serif;
            color: #144443;
            margin-bottom: 3%;
            text-align: center;
        }

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

        .skill-card {
            background: #fbfbfb;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #144443;
        }

        .skill-card h4 {
            color: #144443;
            margin-bottom: 10px;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
        }

        .skill-card ul {
            list-style: none;
            padding: 0;
        }

        .skill-card li {
            padding: 5px 0;
            font-size: 13px;
            position: relative;
            padding-left: 20px;
			color:#144443
        }

        .skill-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #144443;
            font-weight: bold;
        }

        /* Section salaire avec données réelles */
        .salary-section {
            background: #ffba9914;
            padding: 50px 10%;
        }

        .salary-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .salary-card {
            background:#144443;
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .salary-amount {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 10px;
            font-family: 'Poppins'
        }

        .salary-details {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Sources inline dans les blocs */
        .block-sources {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #e0e0e0;
            font-size: 11px;
            color: #144443;
        }

        .source-item {
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .source-item strong {
            color: #144443;
            font-size: 12px;
        }

        .source-item a {
            color: #144443;
            text-decoration: none;
        }

        .source-item a:hover {
            text-decoration: none;
			color:#144443
        }

        /* Graphiques et visualisations */
        .chart-section {
            background: #fff;
            padding: 50px 10%;
            margin: 20px 0;
        }

        .chart-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .chart-title {
            font-family: 'Forum', serif;
            color:#144443;
            margin-bottom: 30px;
            text-align: center;
            font-size: 1.8em;
        }

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

        .chart-card {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

        .chart-card h4 {
              color: #144443;
    margin-bottom: 20px;
    font-size: 13px;
    text-align: center;
    font-family: poppins !important;
        }

        /* Graphique en barres */
        .bar-chart {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .bar-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .bar-label {
            min-width: 140px;
            font-size: 12px;
            font-weight: 500;
			color:#144443
        }

        .bar-container {
            flex: 1;
            height: 25px;
            background: #e9ecef;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .bar-fill {
            height: 100%;
            background: #144443;
            border-radius: 12px;
            transition: width 2s ease;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 8px;
        }

        .bar-value {
            color: #fff;
            font-size: 11px;
            font-weight: bold;
        }

        /* Graphique circulaire */
        .circular-progress {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .circle-item {
            text-align: center;
        }

        .circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: conic-gradient(var(--primary-orange) 0deg, var(--primary-orange) 0deg, #e9ecef 0deg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            position: relative;
            transition: background 2s ease;
        }

        .circle::before {
            content: '';
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #f8f9fa;
            position: absolute;
        }

        .circle-value {
            font-size: 16px;
            font-weight: bold;
            color: #144443;
            z-index: 1;
        }

        .circle-label {
            font-size: 12px;
            color: #144443;
        }

        /* Histogramme salaires */
        .salary-histogram {
            display: flex;
            align-items: end;
            justify-content: space-around;
            height: 250px;
            margin: 20px 0; 
            padding: 0 20px;
        }

        .histogram-bar {
            flex: 1;
            margin: 0 5px;
               background: #144443;
            border-radius: 4px 4px 0 0;
            position: relative;
            transition: height 2s ease;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-top: 5px;
        }

        .histogram-value {
            color: #fff;
            font-size: 11px;
            font-weight: bold;
        }

        .histogram-label {
              position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #144443;
    text-align: center;
    width: 80px;
        }

        /* Jauges de compétences */
        .skills-gauge {
            display: grid;
            gap: 15px;
        }

        .gauge-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .gauge-label {
            min-width: 100px;
            font-size: 12px;
			color:#144443
        }

        .gauge-bar {
            flex: 1;
            height: 8px;
            background: #e9ecef;
            border-radius: 4px;
            overflow: hidden;
        }

        .gauge-fill {
            height: 100%;
            background: #144443;
            border-radius: 4px;
            transition: width 2s ease;
        }

        /* CTA Section */
        .cta-section {
            color: #fff;
            padding: 50px 10%; 
            text-align: center;
        }

        .cta-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-title {
            font-family: 'Forum', serif;
            font-size: 2em;
            margin-bottom: 20px;
			color:#144443
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
			margin-bottom: 30px;
        }

        .btn-primary, .btn-secondary {
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background: #144443;
            color: #fff;
            border: 2px solid #144443;
        }
		
		 .btn-primary i {
            color: #fff;
        }

        .btn-primary:hover {
            background: #144443;
            border-color: #144443;
            transform: translateY(-2px);
			color:#fff
        }

        .btn-secondary {
            background: transparent;
            color: #144443;
            border: 2px solid #fff;
        }

        .btn-secondary:hover {
            background: #fff;
            color: #ff7500;
        }

        /* Tags similaires à votre site */
        .tags-section {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 2%;
            padding: 20px 10%;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            margin-bottom: 5%;
        }

        .tag {
            display: flex;
            align-items: center;
            background: #144443;
            border-radius: 25px;
            padding: 8px 18px;
            font-size: 12px;
            color: #fff;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .tag::before {
            content: "✓";
            margin-right: 8px;
            font-size: 14px;
            color: #fff;
        }

        /* Responsive Design */
        @media (max-width: 1400px) {
            .hero-section {
                display: block;
                width: 95%;
            }
            
            .container {
                flex-direction: column;
            }
            
            .left-content, .right-content {
                max-width: 100%;
                width: 100%;
            }
        }

        @media (max-width: 992px) {
            .hero-section {
                flex-direction: column;
                text-align: center;
                width: 95%;
                padding: 30px 20px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .skills-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero-title {
                font-size: 28px;
            }
            
            .hero-section {
                margin-top: 10%;
                padding: 20px 10px;
            }
        }
		
		.fa-solid, .fas {
    font-weight: 900;
    color: #144443;
}