/* Styles de base */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */
header {
  background-color: #5d8bd4cc;
  color: #fff;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

/* Navigation */
header nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  display: block;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #f1c40f;
}

/* Section Hero */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  text-align: center;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.content {
  position: relative;
  color: white;
  text-align: center;
  padding: 50px;
  z-index: 1;
}

/* Section Services */
.service {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(75, 66, 66, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-number {
  font-size: 2rem;
  font-weight: bold;
  color: #9d1d50;
  flex-shrink: 0;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.service-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

/* Formulaire */
.email-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f4f4f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: auto;
  margin-bottom: 50px;
}

input[type="email"] {
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.submit-button {
  padding: 12px;
  font-size: 1rem;
  color: white;
  background-color: #5c6bc0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.submit-button:hover {
  background-color: #3f4b9a;
  transform: scale(1.05);
}

/* RESPONSIVE DESIGN */

/* Écrans de taille moyenne (tablette) */
@media (max-width: 1024px) {
  header .container {
    padding: 0 1rem;
  }

  header nav ul {
    gap: 1.5rem;
  }

  .service {
    flex-direction: column;
    align-items: center;
  }
}

/* Écrans mobiles */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  header nav ul {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 10px 0;
  }

  .email-container {
    width: 90%;
    max-width: 350px;
  }

  input[type="email"] {
    font-size: 0.9rem;
  }

  .submit-button {
    font-size: 1rem;
    padding: 10px;
  }

  .service {
    padding: 1rem;
    gap: 1rem;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .service-content p {
    font-size: 1rem;
  }
}






/* Styles généraux */
.container {
  text-align: center;
  padding: 20px;
  font-family: Arial, sans-serif;
}

/* Titre */
h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

/* Grille responsive */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Carte de plan tarifaire */
.pricing-plan {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.pricing-plan:hover {
  transform: scale(1.05);
}

/* Image du plan */
.plan-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* En-tête du plan */
.plan-header h2 {
  font-size: 20px;
  margin: 10px 0;
  color: #007BFF;
}

/* Prix */
.price {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-top: 5px;
}

/* Responsive pour les petits écrans */
@media (max-width: 768px) {
  .pricing-table {
      flex-direction: column;
      align-items: center;
  }
}


.footer-container{
  background-color: #333;
}

.footer-section {
  background-color: #333;
}



/* a prospos  */

.about-us {
  background: #f8f9fa;
  padding: 40px 20px;
  text-align: center;
}

.about-us .container {
  max-width: 800px;
  margin: auto;
}

h2 {
  color: #004085;
  font-size: 24px;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.certifications {
  margin-top: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.certifications h3 {
  font-size: 20px;
  color: #004085;
  margin-bottom: 10px;
}

.certifications ul {
  list-style: none;
  padding: 0;
}

.certifications li {
  font-size: 16px;
  color: #555;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certifications li::before {
  content: "✔";
  color: #28a745;
  font-weight: bold;
  margin-right: 8px;
}
