 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: #2c3e50;
     overflow-x: hidden;
 }

 .header {
     background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
     color: white;
     padding: 1.5rem 0;
     position: sticky;
     top: 0;
     z-index: 1000;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo img {
     max-width: 250px;
 }

 .nav-menu {
     display: flex;
     gap: 30px;
     list-style: none;
 }

 .nav-menu a {
     color: white;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
     position: relative;
 }

 .nav-menu a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: #f0b429;
     transition: width 0.3s ease;
 }

 .nav-menu a:hover::after {
     width: 100%;
 }

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
 }


 .nav-menu.active {
     display: flex;
 }

 .hero {
     background: linear-gradient(135deg, rgba(45, 55, 72, 0.9) 0%, rgba(74, 85, 104, 0.9) 100%);
     color: white;
     padding: 80px 20px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .hero-img img {
     margin-top: 60px;
     width: 60%;
     height: auto;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
 }

 @keyframes float {
     from {
         transform: translateY(0);
     }

     to {
         transform: translateY(-100px);
     }
 }

 .hero-content {
     max-width: 1000px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 .hero h1 {
     font-size: 2.8rem;
     margin-bottom: 1rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
 }

 .hero h2 {
     font-size: 1.8rem;
     margin-bottom: 1.5rem;
     color: #f0b429;
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     opacity: 0.95;
 }

 .key-points {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
     gap: 20px;
     margin-top: 40px;
 }

 .key-point {
     background: rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(10px);
     padding: 25px;
     border-radius: 12px;
     transition: transform 0.3s ease, background 0.3s ease;
 }

 .key-point:hover {
     transform: translateY(-5px);
     background: rgba(255, 255, 255, 0.25);
 }

 .key-point i {
     font-size: 2.5rem;
     margin-bottom: 15px;
     color: #f0b429;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 40px 20px;
 }

 .section-title {
     font-size: 2.5rem;
     color: #2d3748;
     margin-bottom: 20px;
     text-align: center;
     position: relative;
     padding-bottom: 15px;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, #4a5568, #f0b429);
     border-radius: 2px;
 }

 .why-section {
     background: #f8fafc;
     padding: 60px 20px;
     position: relative;
 }

 .why-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     opacity: 0.05;
     z-index: 0;
 }

 .why-section>* {
     position: relative;
     z-index: 1;
 }

 .feature-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     margin-top: 40px;
 }

 .feature-card {
     background: white;
     padding: 30px;
     border-radius: 12px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
 }

 .feature-card i {
     font-size: 3rem;
     color: #4a5568;
     margin-bottom: 20px;
 }

 .feature-card h3 {
     color: #2d3748;
     margin-bottom: 10px;
     font-size: 1.3rem;
 }

 .program-section {
     background: white;
     position: relative;
 }

 .program-section::after {
     content: '';
     position: absolute;
     top: 50%;
     right: 5%;
     width: 300px;
     height: 300px;
     opacity: 0.08;
     border-radius: 50%;
     z-index: 0;
 }

 .program-section>* {
     position: relative;
     z-index: 1;
 }

 .day-card {
     background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
     padding: 30px;
     margin-bottom: 25px;
     border-radius: 12px;
     border-left: 5px solid #4a5568;
     transition: transform 0.3s ease;
 }

 .day-card:hover {
     transform: translateX(10px);
 }

 .day-card h3 {
     color: #2d3748;
     margin-bottom: 20px;
     font-size: 1.5rem;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .day-card ul {
     list-style: none;
     padding-left: 0;
 }

 .day-card li {
     padding: 10px 0;
     padding-left: 30px;
     position: relative;
 }

 .day-card li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: #38a169;
     font-weight: bold;
     font-size: 1.2rem;
 }

 .target-section {
     background: linear-gradient(135deg, rgba(74, 85, 104, 0.95) 0%, rgba(45, 55, 72, 0.95) 100%);
     padding: 60px 20px;
 }

 .target-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 25px;
     margin-top: 40px;
 }

 .target-item {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     padding: 25px;
     border-radius: 12px;
     text-align: center;
     transition: background 0.3s ease;
 }

 .target-item:hover {
     background: rgba(255, 255, 255, 0.2);
 }

 .target-item i {
     font-size: 2.5rem;
     margin-bottom: 15px;
     color: #f0b429;
 }

 .certification-section {
     background: #f8fafc;
     padding: 20px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .certification-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
 }

 .certification-section>* {
     position: relative;
     z-index: 1;
 }

 .cert-box {
     max-width: 800px;
     margin: 40px auto;
     background: white;
     padding: 20px;
     border-radius: 12px;
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
 }

 .cert-box i {
     font-size: 4rem;
     color: #38a169;
     margin-bottom: 20px;
 }

 .cta-section {
     background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(74, 85, 104, 0.95) 100%);
     padding: 60px 20px;
     text-align: center;
 }

 .cta-button {
     display: inline-block;
     padding: 18px 40px;
     background: #f0b429;
     color: #2d3748;
     text-decoration: none;
     border-radius: 50px;
     font-weight: bold;
     font-size: 1.2rem;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     box-shadow: 0 4px 15px rgba(240, 180, 41, 0.4);
 }

 .cta-button:hover {
     transform: scale(1.05);
     box-shadow: 0 6px 25px rgba(240, 180, 41, 0.6);
 }

 .faq-section {
     background: white;
     padding: 60px 20px;
 }

 .faq-item {
     background: #f8fafc;
     margin-bottom: 15px;
     border-radius: 8px;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .faq-question {
     padding: 20px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
     color: #2d3748;
     background: #edf2f7;
     transition: background 0.3s ease;
 }

 .faq-question:hover {
     background: #e2e8f0;
 }

 .faq-answer {
     padding: 0 20px;
     max-height: 0;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .faq-item.active .faq-answer {
     padding: 20px;
     max-height: 500px;
 }

 .faq-item.active .faq-question i {
     transform: rotate(180deg);
 }

 .dates-table {
     max-width: 1000px;
     margin: 40px auto;
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

 .dates-table table {
     width: 100%;
     border-collapse: collapse;
 }

 .dates-table th {
     background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
     color: white;
     padding: 20px;
     text-align: left;
     font-weight: 600;
 }

 .dates-table td {
     color: #2d3748;
     padding: 18px 20px;
     border-bottom: 1px solid #edf2f7;
 }

 .dates-table tr:last-child td {
     border-bottom: none;
 }

 .dates-table tr:hover {
     background: #f0f9ff;
 }

 .location-badge {
     display: inline-block;
     padding: 6px 12px;
     background: #e2e8f0;
     color: #2d3748;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: 600;
 }

 .status-badge {
     display: inline-block;
     padding: 6px 12px;
     border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 600;
 }

 .status-available {
     background: #c6f6d5;
     color: #22543d;
 }

 .status-limited {
     background: #feebc8;
     color: #744210;
 }

 .section-image {
     width: 50%;
     height: 400px;

     object-fit: cover;
     border-radius: 12px;
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
     margin: 30px auto;
     display: block;
 }

 .image-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 25px;
     margin: 40px 0;
 }

 .image-card {
     position: relative;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     transition: transform 0.3s ease;
 }

 .image-card:hover {
     transform: scale(1.05);
 }

 .image-card img {
     width: 100%;
     height: 250px;
     object-fit: cover;
 }

 .image-card-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     padding: 20px;
     color: white;
 }

 .cta-btn {
     display: inline-block;
     padding: 15px 35px;
     background: linear-gradient(135deg, #f0b429 0%, #d69e2e 100%);
     color: #2d3748;
     text-decoration: none;
     border-radius: 50px;
     font-weight: bold;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(240, 180, 41, 0.4);
     border: none;
     cursor: pointer;
 }

 .cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 25px rgba(240, 180, 41, 0.6);
 }

 .cta-btn-white {
     background: white;
     color: #2d3748;
 }

 .cta-btn-white:hover {
     background: #f8fafc;
 }

 .contact-section {
     background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
     padding: 80px 20px;
 }

 .contact-container {
     max-width: 800px;
     margin: 0 auto;
     background: white;
     padding: 50px;
     border-radius: 16px;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
 }

 .form-group {
     margin-bottom: 25px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     color: #2d3748;
     font-weight: 600;
     font-size: 1rem;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     width: 100%;
     padding: 15px;
     border: 2px solid #e2e8f0;
     border-radius: 8px;
     font-size: 1rem;
     transition: border-color 0.3s ease;
     font-family: inherit;
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     outline: none;
     border-color: #4a5568;
 }

 .form-group textarea {
     min-height: 150px;
     resize: vertical;
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .submit-btn {
     width: 100%;
     padding: 18px;
     background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
     color: white;
     border: none;
     border-radius: 50px;
     font-size: 1.2rem;
     font-weight: bold;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(74, 85, 104, 0.4);
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 25px rgba(74, 85, 104, 0.6);
 }

 .contact-info {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 25px;
     margin-top: 40px;
     padding-top: 40px;
     border-top: 2px solid #e2e8f0;
 }

 .contact-info-item {
     text-align: center;
 }

 .contact-info-item i {
     font-size: 2rem;
     color: #4a5568;
     margin-bottom: 10px;
 }

 .contact-info-item h4 {
     color: #2d3748;
     margin-bottom: 5px;
 }

 .contact-info-item p {
     color: #718096;
 }

 .footer {
     background: #1a202c;
     color: white;
     padding: 40px 20px;
     text-align: center;
 }

 .btn-cont {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
 }

 @media (max-width: 768px) {
     .hero h1 {
         font-size: 2rem;
     }

     .hero h2 {
         font-size: 1.4rem;
     }

     .hero p {
         font-size: 1rem;
     }

     .section-title {
         font-size: 1.8rem;
     }

     .key-points {
         grid-template-columns: 1fr;
     }

     .nav-container {
         flex-wrap: wrap;
     }

     .mobile-menu-btn {
         display: block;
     }

     .nav-menu {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
         flex-direction: column;
         padding: 20px;
         gap: 15px;
         box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     }

     .nav-menu.active {
         display: flex;
     }

     .dates-table {
         overflow-x: auto;
     }

     .dates-table table {
         min-width: 600px;
     }

     .section-image {
         height: 250px;
         width: 100%;

     }

     .image-card img {
         height: 200px;
     }

     .form-row {
         grid-template-columns: 1fr;
     }

     .contact-container {
         padding: 30px 20px;
     }

     .btn-cont {
         flex-direction: column;
         align-items: center;
     }

     .hero-img img {
         width: 100%;
     }

     .france-map img {
         width: 100%;
         height: auto;

     }


 }

 .financing-section {
     background: white;
     padding: 10px;
     position: relative;
 }

 .financing-content {
     max-width: 1100px;
     margin: 0 auto;
 }

 .financing-intro {
     text-align: center;
     margin-bottom: 60px;
 }

 .intro-text {
     font-size: 1.2rem;
     line-height: 1.9;
     color: #4a5568;
     max-width: 900px;
     margin: 0 auto;
     padding: 30px;
     background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
     border-radius: 16px;
     border-left: 5px solid #4a5568;
 }

 .intro-text i {
     font-size: 2rem;
     color: #4a5568;
     display: block;
     margin-bottom: 20px;
 }

 .financing-support {
     background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
     padding: 40px;
     border-radius: 16px;
     margin-top: 40px;
     margin-bottom: 60px;
     box-shadow: 0 8px 25px rgba(45, 55, 72, 0.2);
 }

 .support-content {
     display: flex;
     align-items: flex-start;
     gap: 30px;
     color: white;
 }

 .support-content>i {
     font-size: 3.5rem;
     opacity: 0.9;
 }

 .support-content h4 {
     font-size: 1.6rem;
     margin-bottom: 15px;
 }

 .support-content p {
     font-size: 1.05rem;
     line-height: 1.8;
     opacity: 0.95;
 }

 .financing-logos {
     text-align: center;
     padding: 60px 30px;
     background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
     border-radius: 16px;
 }

 .logos-title {
     color: #2d3748;
     font-size: 1.8rem;
     margin-bottom: 40px;
     text-align: center;
 }

 .logos-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     align-items: center;
     justify-items: center;
     max-width: 800px;
     margin: 0 auto;
 }

 .logos-grid1 {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;

 }

 .logos-img img {
     width: 250px;
     height: auto;
 }




 .logo-item {
     background: white;
     padding: 25px;
     border-radius: 12px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     width: 100%;
     height: 100px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .logo-item:hover {
     transform: translateY(-8px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }

 .logo-item img {
     width: 50%;
     object-fit: contain;
 }

 @media (max-width: 768px) {
     .financing-text-grid {
         grid-template-columns: 1fr;
     }

     .support-content {
         flex-direction: column;
         text-align: center;
     }

     .support-content>i {
         font-size: 2.5rem;
     }

     .logos-grid {
         grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
         gap: 20px;
     }

     .logos-grid1 {
         grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
         gap: 20px;
     }

     .intro-text {
         font-size: 1.05rem;
         padding: 25px 20px;
     }

     .financing-support {
         padding: 30px 20px;
     }

     .financing-logos {
         padding: 40px 20px;
     }
 }

 .two-column-section {
     margin-top: -60px;
     padding-bottom: 40px;
 }

 .two-columns {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
     max-width: 600px;
     margin: 0 auto;
 }

 .column-image {
     width: 100%;
     overflow: hidden;
     position: relative;
     border-radius: 15px;
 }

 .column-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 @media (max-width: 968px) {
     .two-columns {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .column-image {
         height: 280px;
     }
 }

 .france-map {
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto;
     padding: 10px;

 }

 .france-map img {
     border-radius: 15px;
 }







 .blog-section {
     background: #f8fafc;
     padding: 80px 20px;
 }

 .blog-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
     margin-top: 40px;
 }

 .blog-card {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .blog-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
 }

 .blog-image {
     position: relative;
     height: 220px;
     overflow: hidden;
 }

 .blog-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .blog-card:hover .blog-image img {
     transform: scale(1.05);
 }

 .blog-date {
     position: absolute;
     top: 15px;
     left: 15px;
     background: rgba(45, 55, 72, 0.9);
     color: white;
     padding: 8px 15px;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: 600;
 }

 .blog-content {
     padding: 25px;
 }

 .blog-content h3 {
     color: #2d3748;
     font-size: 1.3rem;
     margin-bottom: 15px;
     line-height: 1.4;
     min-height: 70px;
 }

 .blog-content p {
     color: #718096;
     margin-bottom: 20px;
     line-height: 1.6;
 }

 .blog-read-more {
     color: #4a5568;
     text-decoration: none;
     font-weight: 600;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: color 0.3s ease;
 }

 .blog-read-more:hover {
     color: #f0b429;
 }

 .blog-read-more i {
     font-size: 0.9rem;
     transition: transform 0.3s ease;
 }

 .blog-read-more:hover i {
     transform: translateX(5px);
 }

 .image-cont img {
     width: 50%;
 }




 .blog-header {
     background: linear-gradient(135deg, rgba(45, 55, 72, 0.9) 0%, rgba(74, 85, 104, 0.9) 100%);
     color: white;
     padding: 80px 20px;
     text-align: center;
 }

 .blog-header h1 {
     font-size: 2.8rem;
     margin-bottom: 1rem;
 }

 .blog-header p {
     font-size: 1.2rem;
     opacity: 0.9;
     max-width: 700px;
     margin: 0 auto;
 }

 .blog-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 60px 20px;
 }

 .blog-main-grid {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 40px;
 }

 .blog-articles {
     display: flex;
     flex-direction: column;
     gap: 50px;
 }

 .blog-article {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .blog-article-image {

     overflow: hidden;
 }

 .blog-article-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .blog-article-content {
     padding: 40px;
 }

 .blog-article-meta {
     display: flex;
     gap: 20px;
     margin-bottom: 20px;
     color: #718096;
     font-size: 0.9rem;
 }

 .blog-article-meta span {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .blog-article-content h2 {
     color: #2d3748;
     font-size: 1.8rem;
     margin-bottom: 20px;
 }

 .blog-article-content p {
     color: #4a5568;
     margin-bottom: 20px;
     line-height: 1.7;
 }

 .blog-article-content h3 {
     color: #2d3748;
     margin: 30px 0 15px;
     font-size: 1.3rem;
 }

 .blog-article-content ul,
 .blog-article-content ol {
     margin-left: 20px;
     margin-bottom: 20px;
     color: #4a5568;
 }

 .blog-article-content li {
     margin-bottom: 10px;
 }

 .blog-sidebar {
     background: #f8fafc;
     padding: 30px;
     border-radius: 12px;
     height: fit-content;
 }

 .sidebar-widget {
     margin-bottom: 40px;
 }

 .sidebar-widget h3 {
     color: #2d3748;
     margin-bottom: 20px;
     padding-bottom: 10px;
     border-bottom: 2px solid #e2e8f0;
 }

 .recent-posts {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .recent-post {
     display: flex;
     gap: 15px;
     align-items: flex-start;
     cursor:pointer
 }

 .recent-post-image {
     width: 80px;
     height: 60px;
     border-radius: 6px;
     overflow: hidden;
     flex-shrink: 0;
 }

 .recent-post-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .recent-post-content h4 {
     color: #2d3748;
     font-size: 0.9rem;
     margin-bottom: 5px;
 }

 .recent-post-content span {
     color: #718096;
     font-size: 0.8rem;
 }

 .categories-list {
     list-style: none;
 }

 .categories-list li {
     margin-bottom: 12px;
     padding-bottom: 12px;
     border-bottom: 1px solid #e2e8f0;
 }

 .categories-list a {
     color: #4a5568;
     text-decoration: none;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: color 0.3s ease;
 }

 .categories-list a:hover {
     color: #f0b429;
 }

 .categories-list span {
     background: #e2e8f0;
     padding: 2px 8px;
     border-radius: 10px;
     font-size: 0.8rem;
 }

 .back-to-home {
     display: inline-block;
     padding: 12px 25px;
     background: #4a5568;
     color: white;
     text-decoration: none;
     border-radius: 50px;
     margin-top: 40px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .back-to-home:hover {
     background: #2d3748;
     transform: translateY(-2px);
 }



 .pagination {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-top: 50px;
 }

 .pagination a {
     display: inline-block;
     padding: 10px 18px;
     background: white;
     color: #4a5568;
     text-decoration: none;
     border-radius: 6px;
     border: 1px solid #e2e8f0;
     transition: all 0.3s ease;
 }

 .pagination a:hover,
 .pagination a.active {
     background: #4a5568;
     color: white;
     border-color: #4a5568;
 }


 /* ===== RESPONSIVE DESIGN BLOG ===== */

 /* Mobile First - Petits écrans */
 @media (max-width: 768px) {

     /* Header et navigation */
     .nav-container {
         padding: 0 15px;
     }



     /* Blog header */
     .blog-header {
         padding: 40px 20px;
     }

     .blog-header h1 {
         font-size: 1.8rem;
         line-height: 1.3;
     }

     .blog-header p {
         font-size: 1rem;
     }

     /* Layout principal */
     .blog-main-grid {
         grid-template-columns: 1fr;
         gap: 30px;
         padding: 0 15px;
     }

     /* Articles */
     .blog-article {
         padding: 20px;
         margin-bottom: 30px;
     }

     .blog-article-image img {
         height: 200px;
         border-radius: 8px 8px 0 0;
     }

     .blog-article-content {
         padding: 20px 0;
     }

     .blog-article-meta {
         flex-direction: column;
         gap: 10px;
         margin-bottom: 15px;
         font-size: 0.9rem;
     }

     .blog-article-meta span {
         margin-right: 15px;
     }

     .blog-article h2 {
         font-size: 1.5rem;
         line-height: 1.4;
         margin-bottom: 15px;
     }

     .blog-article h3 {
         font-size: 1.3rem;
         margin: 20px 0 10px;
     }

     .blog-article h4 {
         font-size: 1.1rem;
     }

     .blog-article p,
     .blog-article li {
         font-size: 1rem;
         line-height: 1.6;
     }

     /* Tables responsive */
     .blog-table {
         display: block;
         overflow-x: auto;
         white-space: nowrap;
         -webkit-overflow-scrolling: touch;
         margin: 15px 0;
         font-size: 0.9rem;
     }

     .blog-table thead {
         display: table-header-group;
     }

     .blog-table tbody {
         display: table-row-group;
     }

     .blog-table th,
     .blog-table td {
         min-width: 120px;
         padding: 10px 8px;
     }

     /* Grid layouts responsive */
     .benefits-grid,
     .epi-grid,
     .value-proposition,
     .principles-grid,
     .innovations-grid,
     .requirements,
     .training-formats,
     .stock-management,
     .waste-categories,
     .disinfectant-types,
     .pathogens-grid,
     .renewal-process,
     .circuit-steps,
     .cycle-steps,
     .zoning-diagram,
     .documentation-list,
     .skills-future,
     .recommendations,
     .methods-grid,
     .advice-grid,
     .preparation-tips,
     .comparison-grid {
         grid-template-columns: 1fr !important;
         gap: 15px;
     }

     /* Cards et boxes */
     .benefit-item,
     .epi-item,
     .value-item,
     .principle,
     .innovation,
     .requirement,
     .format-card,
     .stock-tip,
     .category,
     .type,
     .pathogen,
     .step,
     .circuit-step,
     .cycle-step,
     .zone,
     .doc-item,
     .skill,
     .recommendation,
     .method,
     .comparison-card,
     .advice-card,
     .tip {
         padding: 15px;
         margin: 10px 0;
     }

     /* Sidebar */
     .blog-sidebar {
         padding: 20px;
         margin-top: 30px;
         border-top: 2px solid #e2e8f0;
     }

     .recent-posts {
         max-height: 400px;
         overflow-y: auto;
     }

     .recent-post {
         padding: 10px;
         margin: 8px 0;
         
     }

     .recent-post-image {
         min-width: 60px;
         height: 60px;
     }

     .recent-post-content h4 {
         font-size: 0.9rem;
         line-height: 1.3;
     }

     /* Pagination */
     .pagination {
         flex-wrap: wrap;
         gap: 5px;
         margin-top: 30px;
     }

     .pagination a {
         padding: 8px 12px;
         min-width: 35px;
         height: 35px;
         font-size: 0.9rem;
     }

     /* Back to home */
     .back-to-home {
         padding: 12px 20px;
         font-size: 0.9rem;
         margin: 30px 15px;
     }

     /* Footer */
     .footer .container {
         padding: 20px 15px;
     }

     .footer p {
         font-size: 0.9rem;
         line-height: 1.5;
     }
 }

 /* Tablettes - Écrans moyens */
 @media (min-width: 769px) and (max-width: 1024px) {
     .blog-main-grid {
         grid-template-columns: 1fr;
         gap: 40px;
         padding: 0 30px;
     }

     .blog-sidebar {
         width: 100%;
         margin-top: 40px;
         padding-top: 30px;
         border-top: 2px solid #e2e8f0;
     }

     .blog-sidebar .sidebar-widget {
         max-width: 600px;
         margin: 0 auto;
     }

     .recent-posts {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 15px;
     }

     .blog-article {
         padding: 25px;
     }

     .benefits-grid,
     .epi-grid,
     .value-proposition,
     .principles-grid,
     .innovations-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .pagination {
         gap: 8px;
     }

     .blog-table {
         font-size: 0.95rem;
     }
 }

 /* Grands mobiles (landscape) */
 @media (max-width: 768px) and (orientation: landscape) {


     .blog-article-image img {
         height: 180px;
     }

     .recent-posts {
         max-height: 300px;
     }
 }

 /* Très petits écrans */
 @media (max-width: 480px) {
     .blog-header h1 {
         font-size: 1.5rem;
     }

     .blog-article h2 {
         font-size: 1.3rem;
     }

     .blog-article h3 {
         font-size: 1.2rem;
     }

     .blog-article-image img {
         height: 160px;
     }

     .pagination a {
         padding: 6px 10px;
         min-width: 30px;
         height: 30px;
         font-size: 0.8rem;
     }

     .tag {
         font-size: 0.8rem;
         padding: 4px 10px;
     }

     /* Ajustements spécifiques pour les très petits écrans */
     .checklist-item,
     .doc-item {
         align-items: flex-start;
         flex-wrap: wrap;
     }

     .checklist-item i,
     .doc-item i {
         margin-bottom: 5px;
     }

     .article-tags {
         justify-content: center;
     }
 }

 /* Correction pour les tablettes en mode portrait */
 @media (min-width: 481px) and (max-width: 768px) {
     .blog-main-grid {
         padding: 0 20px;
     }

     .blog-article {
         padding: 25px;
     }

     .recent-posts {
         grid-template-columns: repeat(2, 1fr);
         gap: 15px;
     }
 }

 /* Optimisation pour l'impression */
 @media print {

     .header,
     .blog-sidebar,
     .back-to-home,
     .footer,
     .pagination,
     .mobile-menu-btn {
         display: none !important;
     }

     .blog-main-grid {
         display: block;
     }

     .blog-article {
         break-inside: avoid;
         page-break-inside: avoid;
         margin-bottom: 30pt;
     }

     .blog-article-image {
         max-height: 200px;
         overflow: hidden;
     }

     .blog-article-content {
         color: #000;
     }

     a {
         color: #000;
         text-decoration: underline;
     }

     .blog-table {
         border: 1px solid #000;
     }

     .blog-table th {
         background: #f0f0f0 !important;
         color: #000 !important;
         -webkit-print-color-adjust: exact;
     }
 }



 /* Smooth scrolling pour mobile */
 @media (max-width: 768px) {
     html {
         scroll-behavior: smooth;
         scroll-padding-top: 80px;
     }
 }

 /* Optimisation des images pour mobile */
 @media (max-width: 768px) {

     .blog-article-image img,
     .recent-post-image img {

         width: 100%;
         height: auto;
         max-height: 200px;
     }
 }


 /* Correction du viewport pour iOS */
 @viewport {
     width: device-width;
     zoom: 1.0;
 }