.apropos-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: 10px;*/
    margin-bottom: 60px;
    margin-top: 60px;
}
.apropos-card {
    display: flex;
    align-items: center;
    background: #f8fff7;
    border-radius: 28px;
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.268);
    margin-top: 40px;
    margin-bottom: 30px;
    padding: 24px 36px;
    min-width: 400px;
    max-width: 800px;
    width: 100%;
    gap: 32px;
}
 
.apropos-info {
    flex: 1;
}
.apropos-info h2 {
    margin-bottom: 10px;
}
.apropos-info p {
    margin: 4px 0 0 0;
    color: black;
}

.apropos-info a {
    text-decoration: underline;
    color: blue;
}


/********** FOOTER / PIED DE PAGE **********/



footer h4 {
  bottom: 10px; 
  right: 10px;
  color: #121212;
  font-size: 12px;
}

.footer-item {
  cursor : pointer;
  border: black;
}


footer {
  background-color: #fff;
  padding: 2rem;
  position: relative;
  display: flex; 
  flex-direction: column; 
  align-items: center;
  gap: 1rem; 
}



#mentions-politique {
  display: flex;
  gap: 10px;
}


.footer-item {
  padding: 10px;
  background-color: #fff;
  color: black;
  border-radius: 7px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  overflow: hidden; 
  margin-left: 10px;
  margin-right: 10px;
}

.footer-item:hover {
    color: white;
    background: #54729c;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


a {
    text-decoration: none;
    color: black;
}