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

body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 1); /* Uniforme avec le contenu */
  display: flex;
  flex-direction: column; /* Empile les éléments */
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

/* Header Section */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* margin-bottom: 20px; */
}

/* Main Content */
.main-content {
  text-align: center;
  width: 100%;
}

.logo {
  width: 600px; /* Ajustable */
  height: 600px; /* Ajustable */
  background: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.v14_4 {
  color: #333;
}

.v14_5, .v14_6 {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 10px;
}

/* Footer Section */
.contact-section {
  margin-top: 100px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.contact-item {
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center; /* Alignement sur une seule ligne */
  flex-direction: row;
  flex-wrap: nowrap;
  margin-left: 50px;
  margin-right: 50px;
}

.contact-item .label {
  font-weight: normal; /* Texte normal pour le label */
  margin-right: 5px;
}

.contact-item .value {
  font-weight: bold; /* Texte gras pour la value */
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    width: 350px;
    height: 350px;
  }

  .v14_5{
    font-size: 16px;
  }
  
  .v14_6 {
    font-size: 12px;
  }

  .contact-section {
    flex-direction: column-reverse; /* Afficher les items du footer de bas en haut */
    align-items: flex-start; /* Alignement à gauche */
  }
  
  .contact-item {
    font-size: 12px; /* Ajuste la taille du texte pour les petits écrans */
    margin-left: 0; /* Retirer les marges latérales pour plus de fluidité */
    margin-right: 0;
    margin-bottom: 10px; /* Ajouter un petit espacement entre les items */
	align-items: center;
  }
}
