/* Section 12 : Footer */
.msv-footer {
  background: #005258;
  color: #AFE1E1;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  padding-top: 50px;
  padding-bottom: 30px;
}

.msv-footer a {
  color: #AFE1E1;
  text-decoration: none;
  transition: color 0.2s;
}
.msv-footer a:hover {
  color: #fff;
}

.msv-footer__main {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 0 40px;
  align-items: flex-start;
}
.msv-footer__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.msv-footer__col--logo {
  align-items: flex-start;
  justify-content: flex-start;
}
.msv-footer__logo img {
  max-width: 180px;
  height: auto;
  margin-bottom: 18px;
}
.msv-footer__social {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.msv-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.2s;
}
.msv-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}
.msv-footer__social-link img {
  width: 24px;
  height: 24px;
}
.msv-footer__block {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.msv-footer__block--adresse {
  font-size: 1rem;
  margin-bottom: 0;
}
.msv-footer__block--contacts {
  font-size: 1rem;
  margin-bottom: 0;
}
.msv-footer__block--infos {
  font-size: 1rem;
  margin-top: 1rem;
}
.msv-footer__infos-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.msv-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.msv-footer__links li {
  margin-bottom: 6px;
}
.msv-footer__links a {
  text-decoration: none;
}

.msv-footer__bottom {
  border-top: 1.5px solid #197c7f;
  margin-top: 32px;
  padding: 16px 40px 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #AFE1E1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.msv-footer__legal {
  opacity: 0.85;
}
.msv-footer__credit {
  opacity: 0.85;
  font-size: 0.95rem;
}
.msv-footer__credit a {
  color: #AFE1E1;
  text-decoration: none;
  transition: color 0.2s;
}
.msv-footer__credit a:hover {
  color: #fff;
}
@media (max-width: 1100px) {
  .msv-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 16px 0 16px;
  }
  .msv-footer__bottom {
    padding: 16px 16px 12px 16px;
  }
}
@media (max-width: 700px) {
  .msv-footer__main {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 8px 0 8px;
  }
  .msv-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 12px 8px 8px 8px;
  }
  .msv-footer__logo img {
    max-width: 120px;
  }
} 