body {
  background-color: #f5f5f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  color: #333;
  min-height: 100vh; /* Hauteur minimale de 100% de la hauteur de la fenêtre */
  display: flex;
  flex-direction: column;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo img {
  height: 50px;
  padding-top: 20px;
}
.search-container {
  display: flex;
  align-items: center;
}
.search-box {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-right: 10px;
  font-size: 14px;
}
.search-icon {
  font-size: 20px;
  color: #333;
  cursor: pointer;
}
.main-nav {
  display: flex;
  justify-content: right;
  background-color: white;
  padding: 5px 0;
  margin-bottom: -25px;
}
.main-nav ul {
  display: flex;
  list-style: none;
}
.main-nav ul li {
  margin: 0 15px;
}
.main-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 5px 0;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.home-icon {
  margin-right: 0.1px;
  font-size: 14px;
  position: relative;
  top: -1px;
  display: inline-flex;
  align-items: center;
}
.main-nav ul li a:hover {
  color: #0066cc;
}
.main-nav ul li:first-child a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
}
/* Media query pour les appareils mobiles */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
    flex-direction: column;
  }
  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .popular-tools-grid {
    grid-template-columns: 1fr;
  }
}
.main-contain{
  padding-left: 50px;
  padding-right: 50px;
  text-align: justify;
}
.hero-contain {
  font-size: 16px;
  color: #f5f5f5;
  background-image: url("../images/BatimentIRR.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 15px;
}
.hero-title {
  font-size: 32px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  padding: 50px;
  height: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 15px;
}
.link-white a:link {
  color: white;
}
.link-white a:visited {
  color: white;
}
.link-white a:hover {
  color: white; /* ou une couleur légèrement différente comme #e0e0e0 pour l'effet hover */
}
.description {
  margin-left: 50px;
  margin-right: 40px;
  text-align: justify;
}
.footer {
  text-align: center;
  font-size: 0.9em;
  line-height: 0.5em;
  color: #817979;
  width: 100%;
  margin-top: auto;
  padding: 20px 0;
}

.hero-contain {
  font-size: 16px;
  color: #f5f5f5;
  background-image: url("../images/BatimentIRR.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-title {
  font-size: 32px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  padding: 50px;
  height: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 15px;
}
.link-white a:link {
  color: white;
}

.link-white a:visited {
  color: white;
}

.link-white a:hover {
  color: white; /* ou une couleur légèrement différente comme #e0e0e0 pour l'effet hover */
}
.description {
  margin-left: 50px;
  margin-right: 40px;
  text-align: justify;
}

.footer {
  text-align: center;
  font-size: 0.9em;
  line-height: 0.5em;
  color: #817979;
  width: 100%;
}

h2 {
  color: #2C5282;
  border-bottom: 2px solid #2C5282;
  padding-bottom: 5px;
  margin-top: 25px;
}
h3 {
  color: #3182CE;
}
.container {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;

}
.column {
  flex: 1;
  background-color: #F8F9FA;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #13837d;
  border-radius: 5px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: 0.9em;
}
th,
td {
  border: 1px solid #DDD;
  padding: 8px;
  text-align: left;
}
th {
  background-color: #F2F2F2;
}
.highlight {
  background-color: #EBF8FF;
  padding: 2px 4px;
  border-left: 4px solid #4a5568;
  border-radius: 5px;
  margin: 15px 0;
}
.pros-cons {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.pros,
.cons {
  flex: 1;
  padding: 10px;
  border-radius: 5px;
}
.pros {
  background-color: #E6FFFA;
  border-left: 4px solid #38B2AC;
}
.cons {
  background-color: #FFF5F5;
  border-left: 4px solid #E53E3E;
}

.main-contain ul{
  padding-left: 50px;
}


