body{
}


.ligne {
  display: flex;
  margin-top: 20px;
  margin-left: 20px;
  align-items: center; 
  gap: 20px; 
}


#header{
	display: flex;
	align-items: center;
	gap: 10px; 
}

.gauche{
	padding: 0;
	flex: unset;
	margin-left: 25px;
}

.droite{
	padding: 0;
	flex: unset;
	color: black;
	font-size: 24px;
}

#nav {
  background-color: #003366;
  font-family: sans-serif;
  justify-content: center;
  display: flex;
  margin-top: 15px;
  width: 100%;
}

.menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.menu-item {
  position: relative;
}

.menu > .menu-item > a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-size:28px;
}

.menu > .menu-item:hover {
  background-color: #005599;
}


.submenu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  list-style: none;
  padding: 0;
  margin: 0;
  top: 100%;
  left: 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  min-width: 100%; max-width: 200px;
  z-index: 999;
}

.submenu li a {
  display: block;
  padding: 10px 15px;
  color: #003366;
  text-decoration: none;
}

.submenu li a:hover {
  background-color: #eeeeee;
}


.menu-item:hover .submenu {
  display: block;
}

.burger {
  display: none;
}

@media screen and (max-width: 768px) {
  .menu {
    flex-direction: column;
    display: none;
    background-color: #003366;
    width: 100%;
  }

  .menu.active {
    display: flex;
  }

  .burger {
    display: block;
    font-size: 30px;
    color: #003366;
    padding: 15px 20px;
    cursor: pointer;
    text-align: right;
  }

  #nav {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
  }

  .menu > .menu-item > a {
    font-size: 20px;
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* sous-menus déroulés et lisibles sur mobile (sinon inaccessibles au toucher) */
  .submenu {
    position: static;
    display: block;
    box-shadow: none;
    max-width: none;
    background-color: #00284f;
  }

  .submenu li a {
    color: #ffffff;
    padding-left: 40px;
    font-size: 16px;
  }

  .submenu li a:hover {
    background-color: #003a73;
  }
}

h1{
	padding-top: 25px;
}

section{
	padding-left: 35px;
}

.presentation {
  width: 100%; max-width:900px;
  margin: 50px auto;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}

.presentation h1 {
  text-align: center;
  color: #003366;
  font-size: 32px;
  margin-bottom: 20px;
}

.presentation p {
  font-size: 18px;
  margin-bottom: 20px;
}

.presentation ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.presentation li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 17px;
}

.presentation li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #003366;
  font-weight: bold;
}

.presentation em {
  color: #005599;
  font-style: normal;
  font-weight: 500;
}

.no-bullet {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.with-bullets {
  list-style: disc;
  padding-left: 20px;
}

#contact {
  background-color: #f9f9f9;
  padding: 40px 20px;
  margin-top: 30px;
  font-family: sans-serif;
  color: #003366;
  border-top: 3px solid #003366;
  padding-left: 50px;
}

#contact h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #003366;
}

#contact p {
  margin: 10px 0;
  font-size: 18px;
  line-height: 1.5;
}

#contact .p11 {
    font-size: 18px;
    line-height: 1.5;
}



#contact a {
  color: #003366;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

#footer-container{
	width: 100%;
	background-color: #003366;
	min-height: 300px;
}

.footer-center{
	color: white;
	font-family: sans-serif;
    text-align: center;
	padding-top: 25px;
}

.footer-p{
	font-size: 18px;
	font-family: "Newsreader";
	line-height: 1.6; 
}

.footer-tel{
	text-decoration: none;
	color: white;
}

.footer-tel:hover {
	color: #d4af37;
}

h3{
	font-size: 32px;
	font-family: "Newsreader";
}

#footer-back{
	width: 100%;
	min-height: 55px;
	background-color: #002244;
	padding-top: 0px;
	margin: 0;
	padding: 0;
}

.footer-p1{
	margin: 0;
	padding: 10px;
	color: white;
	text-align: center;
}

.footer-p2{
	color: white;
	text-align: center;
	margin: 0;
	padding: 10px;
}

.footer-href{
	text-decoration: none;
	color: white;
}

.footer-href:hover{
	color: #d4af37;
	line-height: 1.5;
}

.footer-btn {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.footer-btn1 {
  padding: 12px 24px;
  background-color: #005599;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.footer-btn1:hover {
  background-color: #007acc;
  transform: translateY(-2px);
}


#mention {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  line-height: 1.7;
  background-color: #f8f9fa;
  margin: 0;
  padding: 20px;
  color: #222;
}


.h1_mention {
  font-size: 32px;
  color: #003366;
  margin-bottom: 25px;
  border-bottom: 3px solid #003366;
  padding-bottom: 10px;
}

.h2_mention {
  font-size: 24px;
  color: #005599;
  margin-top: 30px;
  margin-bottom: 10px;
}


.p_mention {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.strong_mention {
  color: #003366;
}


.a_mention {
  color: #005599;
  text-decoration: underline;
}

.a_mention:hover {
  color: #007acc;
}


.p_mention:last-of-type {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: 60px;
}


.donne {
  list-style-type: none; 
  margin-left: 30px;     
  padding-left: 0;
  font-family: "Newsreader", serif;
  font-size: 18px;
  line-height: 1.8;
  color: #003366;         
}


.donne li {
  margin-bottom: 10px;
  
}


.donne li::before {
  content: "› ";
  color: #d4af37; 
  font-weight: bold;
  margin-right: 6px;
}

.cookie-banner {
	display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 15px;
  font-family: sans-serif;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
  margin: 0 0 10px;
}

.cookie-banner a {
  color: #d4af37;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cookie-buttons button {
  background-color: #d4af37;
  border: none;
  color: #003366;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-buttons button:hover {
  background-color: #c6a22d;
}

#contact {
  background-color: #f4f4f4;
  width: 100%; max-width:800px;
  margin: 40px auto;
  border-radius: 10px;
  font-family: sans-serif;
  padding-bottom: 25px;
  padding-top: 25px;
  border: none;
}

#contact h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: bold;
  color: #003366;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form span {
  color: red;
}

.rgpd-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.contact-form button {
  background-color: #003366;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #005599;
}

#equipe {
  text-align: center;
  padding: 40px 20px;
}

.equipeh {
  color: #003366;
  font-family: "Newsreader", serif;
  font-size: 32px;
  margin-bottom: 40px;
  border-bottom: 3px solid #003366;
  display: inline-block;
  padding-bottom: 10px;
}

.equipe-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.equipe1 {
  display: flex;
  gap: 20px;
  background-color: #f9f9f9;
  width: 100%;
  width: 100%; max-width:400px;
  padding: 20px;
  border-radius: 10px;
  align-items: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.equipeg img {
}

.equiped {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: black;
  gap: 5px;
}

.equipeh2 {
  font-size: 20px;
  margin: 0;
}

.pequipe {
  margin: 0;
  font-size: 14px;
}

.aequipe {
  text-decoration: none;
  color: black;
}

.aequipe:hover {
  color: #d4af37;
}

.competences_section {
  width: 100%; max-width:900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: sans-serif;
}

.competences_h1 {
  text-align: center;
  font-size: 36px;
  color: #003366;
  margin-bottom: 40px;
}

.competences_section {
  margin-bottom: 30px;
}

.competences_h2{
  font-size: 24px;
  color: #003366;
  border-left: 4px solid #d4af37;
  padding-left: 10px;
  margin-bottom: 10px;
}

.competences_p {
  font-size: 16px;
  line-height: 1.6;
}

.section_immo {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: "Newsreader", serif;
  color: #003366;
}


.h1_service {
  text-align: center;
  font-size: 36px;
  margin: 0 auto 40px;
  border-bottom: 3px solid #003366;
  padding-bottom: 10px;
  display: table;
}


.container_service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%; max-width:1000px;
  margin: 0 auto;
  flex-wrap: wrap; 
}


.gauche_service {
  flex: 1;
  min-width: 280px;
}


.h2_service {
  font-size: 24px;
  margin-bottom: 20px;
  color: #002244;
}


.p_service {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}


.droite_service {
  flex: 0 0 auto;
  max-width: 250px;
}


.img_service {
  width: 100%; max-width: 250px;
  min-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
  .container_service {
    flex-direction: column;
    text-align: center;
  }

  .gauche_service {
    min-width: 0;
  }

  .droite_service {
    margin-top: 20px;
    max-width: 100%;
  }
}

.link_service1 {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.link_service,
.link_service_active {
  padding: 18px 36px;
  font-size: 20px;
  font-family: "Newsreader", sans-serif;
  border-radius: 8px;
  text-decoration: none;
  background-color: #003366;
  color: white;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.link_service:hover {
  background-color: #005599;
  transform: scale(1.05);
}

.link_service_active {
  background-color: #d4af37;
  color: #003366;
  font-weight: bold;
  transform: scale(1.05);
}

.h1_activite {
  text-align: center;
  font-size: 36px;
  margin: 0 auto 40px;
  border-bottom: 3px solid #003366;
  padding-bottom: 10px;
  display: table;
  color: #003366;
}

.div_activite {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%; max-width:1000px;
  margin: 0 auto;
  flex-wrap: wrap; 
}

.p_activite{
	font-size: 22px;
	line-height: 1.6;
	color: #333;
	font-family: "Merryweather";
}



.h2_lien {
  text-align: center;
  font-size: 32px;
  color: #003366;
  font-family: 'Segoe UI', sans-serif;
  margin: 0 auto 30px auto;
  border-bottom: 3px solid #003366;
  padding-top: 35px;
  padding-bottom: 10px;
  width: fit-content;
  display: block;
}



.btn_lien {
  width: 100%; max-width:1000px;
  margin: 0 auto;
  padding: 0 20px;
  padding-bottom: 35px;
}


.ul_lien {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0;
}

.li_lien {
  display: flex;
  justify-content: center;
}


.bttn_lien {
  display: block;
  background-color: #0681c7;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  font-family: 'Segoe UI', sans-serif;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  width: 100%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.bttn_lien:hover {
  background-color: #005599;
  transform: translateY(-2px);
}

.sec_co {
  background-color: #f4f4f4;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.back_co {
  width: 100%; max-width:800px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.h1_co {
  text-align: center;
  font-size: 32px;
  color: #003366;
  margin-bottom: 30px;
  border-bottom: 2px solid #003366;
  padding-bottom: 10px;
}

.h2_co {
  font-size: 22px;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 10px;
  border-left: 4px solid #d4af37;
  padding-left: 10px;
}

.p_co {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.a_co {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.a_co:hover {
  color: #d4af37;
  text-decoration: underline;
}

.map_container {
  width: 40%;
  margin: 30px auto; 
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.a_don{
	text-decoration: none;
	color: black;
}

.a_don:hover{
	color: #d4af37;
}

.global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
}

.img_global{
	border-radius: 50%;
}

.gloglo{
	text-align: center;
}

.carousel-container {
  position: relative;
  width: 100%; max-width:725px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-image {
  min-width: 100%;
  height: auto;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


#carousell{
	padding-bottom: 35px;
}







* {
  box-sizing: border-box;
}



@media screen and (max-width: 768px) {

  .ligne,
  .global,
  #header,
  .footer-btn {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  .footer-btn1 {
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
  }

  .footer-center,
  .footer-p,
  .footer-p1,
  .footer-p2 {
    font-size: 15px;
    padding: 10px;
  }

  #header {
    padding: 15px;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
  }

  .carousel-container,
  .carousel-image {
    width: 100%;
    height: auto;
  }

}

@media screen and (max-width: 768px) {

  /* 🔧 Page coordonnées */
  .back_co {
    padding: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .a_co {
    word-break: break-word;
    display: inline-block;
  }

  .l_co {
    width: 100% !important;
    height: auto;
  }


  #contact {
    padding: 20px;
  }

  .contact-form {
    padding: 15px;
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-size: 16px;
  }

  .rgpd-consent {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-top: 10px;
  }

  .rgpd-consent label {
    width: 100%;
  }

  .rgpd-consent input[type="checkbox"] {
    transform: scale(1.2);
  }
}
