
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}

/* titles */
h1,h2,h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-color);
}

/* Liens */
a {
  color: var(--primary-color);
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}

button:hover {
  background-color: var(--secondary-color);
}

/* header section */
.header-section {
  background-color: #d3e8fc;
  display: flex;
  justify-content: space-between;
  padding: 15px 25px;
  position: relative;
  transition: all 0.3s ease;
  z-index: 1000;
}

.logo-container, .nav-container {
  flex: 1;
  text-align: start;
}

/* logo-container */
.logo-container p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.logo-container img {
  width: 50px;
  border-radius: 5px;
}

/* navbar-icon */ 
.navbar-icon {
  display: none;
}

.navbar-icon img {
  width: 50px;
  height: auto;
}

/* nav-container */
.nav-container {
  display: flex;
  justify-content: end;
  align-items: center;
  font-size: 1.1rem;
  padding: 0;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
}

.nav-list li {
  margin-right: 30px;
  cursor: pointer;
}

.nav-list li:last-child {
  margin-right: 0;
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  right: -100%;
  background-color: var(--background-color, #fff);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
  padding: 10px 0;
  z-index: 1000;
  font-size: 1rem;
  box-sizing: border-box;
}

.dropdown-menu li {
  padding: 10px 10px;
  white-space: nowrap;
  transition: background-color 0.1s ease;
  margin: 0;
}

.dropdown-menu li:hover {
  background-color: #007bff;
  color: white;
}

.dropdown-trigger {
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
}

.dropdown-trigger:after {
  content: '\25BC';
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.dropdown-trigger:hover {
  text-decoration: none;
}

.dropdown-menu {
  display: none;
}

.dropdown-container.open .dropdown-menu {
  display: block;
}

.dropdown-container.open .dropdown-trigger:after {
  transform: rotate(180deg);
}

/* .main-container */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

#introduction {
  background: linear-gradient(135deg, #007bff, #6c63ff);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

#introduction .container {
  max-width: 900px;
  margin: 0 auto;
}

#introduction h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: 'Arial', sans-serif;
}

#introduction .site-name {
  color: #ffdd57;
  font-weight: bold;
}

#introduction p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 auto;
}

/* about-us */
#about-us  {
  padding: 40px 20px;
  background-color: #f5f5f5;
  color: #333;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

#about-us .container {
  max-width: 900px;
  margin: 0 auto;
}

#about-us h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #007bff;
  font-weight: bold;
}

#about-us p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

#about-us .site-name {
  color: #6c63ff;
  font-weight: bold;
}


/* benefits */
#benefits {
  padding: 40px 20px;
  background-color: #fff;
  color: #333;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

#benefits .container {
  max-width: 900px;
  margin: 0 auto;
}

#benefits h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #007bff;
  font-weight: bold;
  text-align: center;
}

.benefits-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.benefits-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #6c63ff;
  font-size: 1.2rem;
  line-height: 1;
}


/* how-it-works */
#how-it-works {
  padding: 40px 20px;
  background-color: #f0f8ff;
  color: #333;
  text-align: left;
  border-radius: 8px;
  margin-bottom: 20px;
}

#how-it-works .container {
  max-width: 900px;
  margin: 0 auto;
}

#how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #007bff;
  font-weight: bold;
  text-align: center;
}

.steps-list {
  list-style-type: decimal;
  padding-left: 20px;
}

.steps-list li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 10px;
  position: relative;
}

.steps-list li::marker {
  font-size: 1.2rem;
  color: #6c63ff;
}

/* contact */
#contact {
  padding: 40px 20px;
  background-color: #f9f9f9;
  color: #333;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

#contact .container {
  max-width: 900px;
  margin: 0 auto;
}

#contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #007bff;
  font-weight: bold;
}

#contact p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-link {
  color: #6c63ff;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #6c63ff;
  outline: none;
}

.btn-submit {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: #0056b3;
}

/* FAQ */
#faq {
  padding: 40px 20px;
  background-color: #e9ecef;
  color: #333;
  text-align: left;
  border-radius: 8px;
  margin-bottom: 20px;
}

#faq .container {
  max-width: 900px;
  margin: 0 auto;
}

#faq h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #007bff;
  font-weight: bold;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-link {
  color: #6c63ff;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}


#testimonials {
  padding: 40px 20px;
  background-color: #f1f8ff;
  color: #333;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

#testimonials .container {
  max-width: 900px;
  margin: 0 auto;
}

#testimonials h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #007bff;
  font-weight: bold;
}

.testimonials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial .quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial .author {
  font-size: 1rem;
  font-weight: bold;
  color: #555;
}


@media (max-width: 480px) {
  
  .dropdown-trigger:after {
    font-size: 16px;
  }

  .dropdown-menu {
    top: 40px;
    right: -100%;
  }

  .navbar-icon {
    display: inline-block;
  }

  #icon {
    color: #0099cc;
  }

  .nav-list {
    display: none;
    flex-direction: column-reverse;
    padding-right: 0;
    gap: 3px;
    width: 30%;
    position: absolute;
    right: -100%;
    background-color: var(--background-color);
    padding: 5px 0;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  .nav-list.open {
    right: 0;
  }

  .nav-list li {
    margin-right: 0;
  }
}