/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f8fb;
  color: #333;
  line-height: 1.7;
  padding-bottom: 50px;
}

/* Header */
header {
  background: linear-gradient(to right, #ff6347, #e74c3c);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

header h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

header p {
  font-size: 1.2em;
  max-width: 850px;
  margin: 0 auto;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Sections */
.section {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.section h2 {
  color: #e74c3c;
  margin-bottom: 15px;
  font-size: 2em;
}

.section ul {
  margin-top: 20px;
  padding-left: 20px;
  list-style-type: square;
}

.section ul li {
  margin-bottom: 12px;
  font-size: 1.1em;
}

/* Button */
.btn-start {
  display: inline-block;
  background-color: #e74c3c;
  color: white;
  padding: 20px 40px;
  border-radius: 8px;
  font-size: 1.2em;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-top: 20px;
}

.btn-start:hover {
  background-color: #c0392b;
}

/* Center alignment for the last section */
.center {
  text-align: center;
}

/* Footer */
/* Footer */
.footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
  border-top: 2px solid #34495e;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-text {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.footer-links {
  margin-top: 15px;
}

.footer-link {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 0.95em;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #e74c3c;
}

.footer-link:active {
  color: #c0392b;
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
  .footer-links {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-link {
    margin-bottom: 10px;
  }
}


/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 2.2em;
  }

  .btn-start {
    width: 100%;
    padding: 20px;
  }
}


/* Style général du corps */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Icône flottante */
.float-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #28a745; /* Couleur vert de la marque */
  color: white;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s;
}

.float-icon:hover {
  background-color: #218838; /* Changement de couleur au survol */
}

.float-icon .icon {
  font-size: 2em;
  text-align: center;
}

/* Message contextuel qui s'affiche au survol */
.float-message {
  display: none;
  position: absolute;
  bottom: 60px;
  right: 0;
  background-color: #fff;
  color: #333;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 200px;
  text-align: center;
}

.float-icon:hover .float-message {
  display: block;
}

.float-message p {
  margin: 0;
}

.float-message a {
  color: #28a745;
  text-decoration: none;
  font-weight: bold;
}

.float-message a:hover {
  text-decoration: underline;
}
