* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    height: 90px;
    background-color: white;
    margin: 0 auto;
    padding: 0 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin-top: 30px;
    float: left;
    font-family: "Times New Roman", Times, serif;
    display: inline-block;
    font-weight: bold;
    margin-left: 10px;
    color: #05C49F;
}

img {
    height: 90px;
    float: left;
    margin-left: 10px;
    margin-top: 0px;
}

nav {
    float: right;
    margin-top: 35px;
}

ul {
    list-style: none;
}

header nav ul li {
    display: inline-block;
    font-weight: bold;
    margin-right: 10px;
    font-family: "Times New Roman", Times, serif;
}

a {
    text-decoration: none;
    color: #05C49F;
}

body {
    font-family: unset;
    margin: 0;
    padding: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.global-container{
    width: 100%;
    max-width: 100%;
    margin: 0;
}

h1 {
    text-align: justify;
    margin-top: 30px;
}

p{
	margin-top: 30px;
}

.liste{
	margin-left: 25px;
	margin-top: 30px;
}

.section {
    display: flex;
    margin-top: 20px;
    margin-left: 50px;
    gap: 50px;
    background-color: fff;
}

.section h2 {
    color: #4CAF50;
    margin-top: 20px;
}

.download-link{
    margin-top: 30px;
}
/* === FOOTER === */
footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-info{
  width: 45%;
}

.footer-links{
  width: 15%;
}

.footer-contacts {
  width: 30%;
}

.footer-info h2, .footer-links h2, .footer-contacts h2 {
  color: #ffcc00;
}

.footer-links ul {
  list-style-type: none;
  padding: 0;
}

.footer-links ul li {
  margin: 5px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: white;
}

.footer-links ul li a:hover {
  color: #ffcc00;
}

footer a {
  color: white;
}

footer a:hover {
  color: #ffcc00;
}

.location-icon {
    color: white; /* Change la couleur de l'icône en bleu */
    font-size: 35px; /* Tu peux aussi ajuster la taille de l'icône */
    margin-top: 20px;
}

.location-icons {
    color: white; /* Change la couleur de l'icône en bleu */
    font-size: 35px; /* Tu peux aussi ajuster la taille de l'icône */
    margin-top: 15px;
}

.phone-icon {
    color: white; /* Couleur de l'icône */
    font-size: 35px; /* Taille de l'icône */
    margin-top: 15px;
}

.whatsapp-icon{
    color: white; /* Couleur de l'icône */
    font-size: 35px; /* Taille de l'icône */
    margin-top: 15px;
}

.email-icon {
    color: white; /* Couleur de l'icône */
    font-size: 35px; /* Taille de l'icône */
    margin-top: 15px;
}

#readMoreBtn {
  background-color: #2a8c82;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#readMoreBtn:hover {
  background-color: #20665f;
}

.map-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
    color: #05C49F;  /* Même couleur que tes titres principaux */
    font-weight: bold;
}

.footer-map {
    width: 100%;
    margin-top: 20px;
}

.footer-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}