 :root {
     --svci-blue: #004b92;
     --svci-red: #f2ff39;
     --svci-white: #FFFFFF;
     --svci-black: #000000;
     --svci-light-bg: #F8F9FA;
     --svci-green: #28a745;
     --svci-gold: #FFD700;
     --svci-light-blue: #e6f0ff;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     color: var(--svci-black);
     background-color: var(--svci-white);
     line-height: 1.6;
 }

 /* Navigation */
 .navbar {
     background-color: var(--svci-white);
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
     padding: 12px 0;
 }

 .navbar-brand img {
     height: 50px;
 }

 .nav-link {
     color: var(--svci-black) !important;
     font-weight: 500;
     margin: 0 10px;
     position: relative;
     transition: all 0.3s;
     padding: 8px 15px !important;
     border-radius: 5px;
 }

 .nav-link:hover {
     color: var(--svci-blue) !important;
     background-color: var(--svci-light-blue);
 }

 .nav-link.active {
     color: var(--svci-red) !important;
     font-weight: 600;
     background-color: rgba(239, 65, 53, 0.1);
 }

 /* Boutons */
 .btn-svci {
     background-color: #ee8002;
     color: white;
     border: none;
     padding: 12px 28px;
     border-radius: 8px;
     transition: all 0.3s;
     font-weight: 500;
     font-size: 1rem;
 }

 .btn-svci:hover {
     background-color: #f58300d3;
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(0, 85, 164, 0.3);
 }

 .btn-outline-svci {
     background-color: transparent;
     color: var(--svci-blue);
     border: 2px solid var(--svci-blue);
     padding: 10px 26px;
     border-radius: 8px;
     transition: all 0.3s;
     font-weight: 500;
 }

 .btn-outline-svci:hover {
     background-color: var(--svci-blue);
     color: white;
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(0, 85, 164, 0.3);
 }

 .btn-whatsapp {
     background-color: #25D366;
     color: white;
     border: none;
     padding: 12px 25px;
     border-radius: 8px;
     transition: all 0.3s;
     font-weight: 500;
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .btn-whatsapp:hover {
     background-color: #128C7E;
     color: white;
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
 }

 /* En-tête de page */
 .page-header {
     background: linear-gradient(rgba(0, 85, 164, 0.8), rgba(0, 85, 164, 0.9)), url('images/contact-header.jpg');
     background-size: cover;
     background-position: center;
     color: white;
     padding: 90px 0;
     text-align: center;
     margin-bottom: 40px;
 }

 .page-header h1 {
     font-weight: 800;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
     margin-bottom: 15px;
 }

 .page-header .lead {
     font-size: 1.3rem;
     max-width: 700px;
     margin: 0 auto;
 }

 /* Titres de section */
 .section-title {
     position: relative;
     margin-bottom: 45px;
     padding-bottom: 15px;
     text-align: center;
     color: var(--svci-blue);
     font-weight: 700;
     font-size: 2.2rem;
 }

 .section-title:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 5px;
     background-color: var(--svci-red);
     border-radius: 3px;
 }

 /* Section Contact */
 .contact-section {
     padding: 80px 0;
 }

 .contact-card {
     background: var(--svci-white);
     border-radius: 12px;
     padding: 40px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
     margin-bottom: 30px;
     height: 100%;
     border-left: 5px solid var(--svci-red);
 }

 .contact-icon {
     font-size: 2.5rem;
     color: var(--svci-blue);
     margin-bottom: 20px;
 }

 .contact-title {
     color: var(--svci-blue);
     font-weight: 700;
     margin-bottom: 15px;
     font-size: 1.4rem;
 }

 .contact-info {
     margin-bottom: 0;
     color: #555;
 }

 .contact-link {
     color: var(--svci-blue);
     text-decoration: none;
     transition: all 0.3s;
 }

 .contact-link:hover {
     color: var(--svci-red);
 }

 /* Formulaire de contact */
 .form-control {
     padding: 15px;
     border-radius: 8px;
     border: 1px solid #ddd;
     transition: all 0.3s;
     margin-bottom: 20px;
 }

 .form-control:focus {
     border-color: var(--svci-blue);
     box-shadow: 0 0 0 0.25rem rgba(0, 85, 164, 0.25);
 }

 .form-label {
     font-weight: 600;
     color: var(--svci-blue);
     margin-bottom: 8px;
 }

 /* Carte */
 .map-container {
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
     height: 400px;
 }

 .map-container iframe {
     width: 100%;
     height: 100%;
     border: none;
 }

 /* Section FAQ */
 .faq-section {
     padding: 80px 0;
     background-color: var(--svci-light-bg);
 }

 .accordion-item {
     border: none;
     border-radius: 8px;
     margin-bottom: 15px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
     overflow: hidden;
 }

 .accordion-button {
     background-color: white;
     color: var(--svci-blue);
     font-weight: 600;
     padding: 20px;
     border: none;
     box-shadow: none;
 }

 .accordion-button:not(.collapsed) {
     background-color: var(--svci-blue);
     color: white;
 }

 .accordion-button:focus {
     border-color: var(--svci-blue);
     box-shadow: 0 0 0 0.25rem rgba(0, 85, 164, 0.25);
 }

 .accordion-body {
     padding: 20px;
     background-color: white;
     color: #555;
 }

 /* Pied de page */
 .footer {
     background-color: var(--svci-black);
     color: white;
     padding: 60px 0 25px;
     margin-top: 80px;
 }

 .footer-title {
     font-weight: bold;
     margin-bottom: 22px;
     position: relative;
     padding-bottom: 12px;
     color: var(--svci-white);
     font-size: 1.3rem;
 }

 .footer-title:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 45px;
     height: 3px;
     background-color: var(--svci-red);
     border-radius: 2px;
 }

 .footer-links a {
     color: #DDD;
     text-decoration: none;
     display: block;
     margin-bottom: 12px;
     transition: all 0.3s;
     font-size: 1.05rem;
 }

 .footer-links a:hover {
     color: var(--svci-red);
     padding-left: 8px;
 }

 .social-icons a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 42px;
     height: 42px;
     background-color: rgba(255, 255, 255, 0.1);
     text-align: center;
     line-height: 40px;
     border-radius: 50%;
     color: white;
     margin-right: 12px;
     transition: all 0.3s;
     text-decoration: none;
 }

 .social-icons a:hover {
     background-color: var(--svci-red);
     color: white;
     transform: translateY(-5px);
 }

 .copyright {
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     padding-top: 25px;
     margin-top: 50px;
     text-align: center;
     color: #AAA;
     font-size: 0.95rem;
 }

 /* Responsive */
 @media (max-width: 992px) {
     .page-header {
         padding: 70px 0;
     }

     .section-title {
         font-size: 1.9rem;
     }

     .contact-card {
         margin-bottom: 25px;
     }
 }

 @media (max-width: 768px) {
     .navbar-nav {
         text-align: center;
     }

     .nav-link {
         margin: 5px 0;
     }

     .page-header {
         padding: 60px 0;
     }

     .page-header h1 {
         font-size: 2.3rem;
     }

     .page-header .lead {
         font-size: 1.1rem;
     }

     .section-title {
         font-size: 1.7rem;
         margin-bottom: 35px;
     }

     .contact-section,
     .faq-section {
         padding: 60px 0;
     }

     .contact-card {
         padding: 30px;
     }

     .footer {
         padding: 50px 0 20px;
         text-align: center;
     }

     .footer-title:after {
         left: 50%;
         transform: translateX(-50%);
     }

     .social-icons {
         justify-content: center;
         margin-top: 20px;
     }
 }

 @media (max-width: 576px) {
     .page-header h1 {
         font-size: 2rem;
     }

     .section-title {
         font-size: 1.5rem;
     }

     .contact-card {
         padding: 25px;
     }

     .btn-whatsapp,
     .btn-svci {
         width: 100%;
         margin-bottom: 10px;
     }
 }

 /* Animations */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .contact-card,
 .accordion-item {
     animation: fadeIn 0.6s ease-out;
 }

