body {
	font-family: 'Poppins', sans-serif;
	 
}


/* Section Title */
.section-title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  color:black;
  letter-spacing: 0.5px;
  position: relative;
  
}
 .ligne {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.colonne {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  flex-direction: column;
  gap: 20px;
} 

@media (max-width: 768px) {
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.borders {
  flex: 1;
  padding: 20px;
  border: 1px solid transparent;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  /* border-left: 4px solid #0b1da5; */
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  min-height: 200px;
}

.borders:hover {
  background: #e9eff4;
  border-color: #457b9d;
} 

/* Titles Inside Blocks */
.ecosystem-title {
  font-size: 20px;
  font-weight: 600;
  color: #0b1da5;
  margin-bottom: 10px;
} 

/* Typography Refinements */
 .ecosystem-text {
  font-size: 16px;
  line-height: 1.6;
  color: black;
  text-align: justify;
  margin-top: 10px;
  padding-bottom: 15px;
}

/* Responsive Columns */
 p {
  margin: 0;
}

