* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background: white;
  width: 100%;
  position: relative;
}

.header {
  position: fixed;
  top: 47px;
  left: 0;
  right: 0;
  height: 41px;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 44px;
  z-index: 10;
  width: 100%;
}

.logo {
  width: 75px;
  height: 17px;
  object-fit: cover;
}

.contact-section {
  background: #21509e;
  padding: 40px 48px;
  color: white;
}

.contact-section h2 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 40px;
  width: 310px;
  margin-left: -20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.contact-icon {
  width: 65px;
  height: 65px;
  background: #dc4226;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.contact-item p {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
}

.contact-item a {
  color: white;
  text-decoration: underline;
}

.scroll-top {
  position: fixed;
  bottom: 120px;
  right: 32px;
  width: 49px;
  height: 49px;
  background: #f1b517;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.scroll-top:hover {
  background: #d9a315;
}

.scroll-top img {
  width: 130px;
  height: 130px;
}

.burger-menu {
  position: relative;
}

.burger-menu img {
  width: 70px;
  height: 60px;
  cursor: pointer;
}

/* Menu déroulant */
.menu-list {
  position: absolute;
  top: 40px;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px 0;
  list-style: none;
  width: 200px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-list li {
  padding: 10px 20px;
}

.menu-list li a {
  text-decoration: none;
  color: #333;
  display: block;
}

.menu-list li:hover {
  background-color: #f0f0f0;
}

/* Cacher le menu */
.hidden {
  display: none;
}

.actualite {
  display: none;
}

/* TABLETTE (min-width: 768px) */
@media (min-width: 768px) {
  body {
    max-width: 100%;
  }

  .header {
    top: 0;
    height: 60px;
    max-width: 100%;
  }

  .logo {
    width: 135px;
    height: 30px;
    object-fit: cover;
  }

  .contact-section {
    padding: 60px 60px;
  }

  .contact-section h2 {
    font-size: 36px;
    margin-left: 0;
  }

  .contact-item p {
    font-size: 16px;
  }
}

  @media (max-width: 1023px) {
  .blog {
    display: none;
  }
}

/* DESKTOP (min-width: 1024px) */
@media (min-width: 1024px) {
  .header {
    top: 0;
    height: 60px;
    max-width: 100%;
    justify-content: flex-start;
    gap: 450px;
    font-family: 'Rubik semi-bold', sans-serif;
  }

  .burger-menu img {
    display: none;
  }

  .burger-menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-list {
    display: flex !important;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 32px;
  }

  .menu-list li {
    padding: 0;
  }

  .menu-list li a {
    position: relative;
    color: #21509e;
    font-weight: 600;
    font-size: 20px;
    padding: 5px 0;
    transition: color 0.3s ease;
  }

  .menu-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #dc4226;
    transition: width 0.3s ease;
  }

  .menu-list li a:hover::after {
    width: 100%;
  }

  .contact-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 45px;
  }

  .contact-item {
    flex: 1;
    align-items: flex-start;
    text-align: left;
  }

  .contact-item p {
    font-size: 16px;
    text-align: left;
  }

  .scroll-top {
    bottom: 50px;
    right: 50px;
    width: 60px;
    height: 60px;
  }

  .actualite {
    display: block;
  }

}