/* 
#Section qui sommes nous
 */
.ul-2-features {
  background-color: #f8f9fc;
  padding: 60px 20px;
  border-top: 1px solid #e5e8ef;
}

.ul-container {
  max-width: 1100px;
  margin: 0 auto;
}

.ul-2-feature {
  text-align: left;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.ul-2-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.ul-2-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e2a5e;
  margin-bottom: 15px;
}

.ul-2-feature p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.ul-2-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ul-2-list li {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.ul-2-list li::before {
  content: "•";
  color: #1e2a5e;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.ul-2-links a {
  color: #1e2a5e;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.ul-2-links a:hover {
  color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
  .ul-2-feature {
    margin-bottom: 20px;
  }

  .ul-2-feature-title {
    text-align: center;
  }

  .ul-2-feature p,
  .ul-2-list {
    text-align: center;
  }
}

/* Floating button container */
.floating-btn-container {
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 1000;
}

/* Main floating button */
.floating-btn {
  width: 60px;
  height: 60px;
  background-color: #007bff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
}

/* Hidden action buttons */
.action-buttons {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 10px;
}

.action-buttons button {
  margin: 5px 0;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.action-buttons button:hover {
  transform: scale(1.1);
  background-color: #f0f0f0;
}

/* Language selector flags */
.language-flags {
  display: none;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}

.language-flags img {
  width: 30px;
  height: 20px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.language-flags img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ul-2-about-points {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
}

.ul-2-about-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #333;
}

.ul-2-about-point i {
  font-size: 22px;
  color: #1e2a5e;
}
