body {
      font-family: 'Inter', sans-serif;
      background-color: #f8f9fa;
      color: #3A3A3A;
    }

    /* Navbar */
    .navbar {
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    }
    .navbar-brand img {
      height: 40px;
      margin-right: 10px;
    }
    .nav-link {
      font-weight: 500;
      color: #004A8F !important;
    }
    .nav-link:hover {
      color: #E65125 !important;
    }

    /* Header */
    .header-section {
      background: #ffffff;
      padding: 140px 0 80px 0;
      text-align: center;
    }
    .header-section img {
      max-width: 820px;
      width: 100%;
      filter: drop-shadow(0 8px 18px rgba(0,0,0,0.25));
      animation: fadeIn 1.2s ease-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* TITRES STYLE LOGO */
    .section-title {
      font-weight: 700;
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }
    .title-start {
      background: linear-gradient(90deg, #004A8F, #0072C6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .title-end {
      color: #4F4F4F;
    }

    .section-subtitle {
      text-align: center;
      color: #555;
      margin-bottom: 2.5rem;
    }

    /* Services */
    .services-section {
      padding: 60px 0;
      background: #E6F0FA;
    }
    .service-card {
      background-color: #ffffff;
      border-radius: 14px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 26px rgba(0,0,0,0.15);
    }
    .service-icon {
      font-size: 2.6rem;
      margin-bottom: 10px;
      color: #004A8F;
    }

    /* About */
    .about-section {
      padding: 60px 0;
      background-color: #ffffff;
    }

    /* Values */
    .values-section {
      padding: 60px 0;
      background: #E6F0FA;
    }
    .value-item strong {
      color: #004A8F;
    }

    /* Footer */
    footer {
      background-color: #f1f1f1;
      padding: 20px 0;
      text-align: center;
      font-size: 0.9rem;
      color: #777;
    }
    .social-icons a {
      color: #004A8F;
      margin: 0 10px;
      font-size: 1rem;
      text-decoration: none;
    }
    .social-icons a:hover {
      color: #E65125;
    }

    /* Mobile */
    @media (max-width: 767.98px) {
      .header-section {
        padding: 100px 0 40px 0;
      }
      .header-section img {
        max-width: 260px;
      }
    }
	
	/* FAQ */
	.accordion-item {
	  border-radius: 12px;
	  overflow: hidden;
	  margin-bottom: 10px;
	  border: none;
	  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
	}

	.accordion-button {
	  font-weight: 600;
	  color: #004A8F;
	  background-color: #ffffff;
	}

	.accordion-button:not(.collapsed) {
	  background-color: #E6F0FA;
	  color: #004A8F;
	}

	.accordion-button:focus {
	  box-shadow: none;
	}

	.accordion-body {
	  color: #555;
	  background-color: #ffffff;
	}

	.faq-contact {
	  background: #E6F0FA;
	  padding: 15px;
	  border-radius: 10px;
	}

	.faq-contact a {
	  color: #004A8F;
	  text-decoration: none;
	}

	.faq-contact a:hover {
	  color: #E65125;
	}