* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  overflow-x: hidden;
  background: #fff;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 10;
}

nav {
  position: relative;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

nav ul li a {
  color: #e30613;
  text-decoration: none;
  font-weight: bold;
}

.logo {
  height: 60px; 
  width: auto;
}

/* Burger menu styles */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: black;
}

@media (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    display: none;
    background: white;
    width: 100%;
    padding: 1rem;
  }

  nav ul.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .scroll-down {
    font-size: 1.5rem;
  }

  footer {
    padding: 1.5rem;
  }

  footer .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.logo {
  height: 60px; 
  width: auto;
}

nav ul li a {
  color: #e30613;
  text-decoration: none;
  font-weight: bold;
}

.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0 auto;
  padding: 40px 20px;
}

.about-container {
  flex-direction: row-reverse;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-image .embleme {
  max-width: 100%;
  max-height: 350px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  object-fit: contain;
}

.about {
  flex: 2;
  color: #222;
  padding: 0 10px;
}

.about h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #e30613;
}

.about h2 {
  font-size: 1.3rem;
  margin-top: 22px;
  margin-bottom: 8px;
  color: #b30000;
}

.about p {
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 20px 5px;
  }
  .about-image, .about {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .about-image .embleme {
    max-width: 220px;
    margin-bottom: 20px;
  }

  footer {
    padding: 1.5rem;
  }

  footer .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

}

.second-block .about-image .embleme {
    max-width: 80%;
    max-height: 250px;
}

.second-block {
    margin-top: 40px;
    gap: 30px;
}

.temoignage {
  font-family: 'Liberation Serif', 'Times New Roman', Times, serif;
  font-size: 1.4rem;
  color: #444;
  font-style: italic;
  background: #f9f9f9;
  border-left: 4px solid #e30613;
  padding: 12px 24px;
  margin: 18px 0;
  border-radius: 8px;
}

footer {
  background-color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: #333;
  text-align: center;
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

footer .contact-info {
  margin-top: 1rem;
  line-height: 1;
  color: black;
}

