/* Base Styles */
body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

/* On retire la couleur globale pour éviter les conflits */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}
p {
  margin: 0 0 1em;
}

/* Layout Containers */
.section {
  padding: 60px 20px;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Introduction Section */
.intro-section {
  background: url('image/intro-section-bkg-image.webp') no-repeat center center;
  background-size: cover;
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
}
.logo {
  max-width: 250px;
  width: 100%;
  height: auto;
}
.tagline {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 1rem 0 0 0;
  color: #ffffff;
}

/* About Section */
.about-section {
  background-color: #ffffff;
  color: #1a1a1a;
}

/* Core Values Section */
.values-section {
  background-color: #ebebe6;
  color: #1a1a1a;
}
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.value-item {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure images are even smaller and well-aligned */
.value-item img {
    min-width: 180px;
  max-width: 220px; /* Further reduced size */
  height: auto;
  display: block;
  margin: 0 auto 5px;
  border-bottom: none;
}

.value-item h3 {
  font-size: 0.9rem;
  margin-top: 6px;
  color: #1a1a1a;
}

.value-item p {
  font-size: 0.85rem;
  color: #333333;
}

/* Contact Section */
.contact-section {
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
}

/* Link styling (for email) */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .values-list {
    flex-direction: column;
  }
  .value-item {
    max-width: 100%;
  }
}
