@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*
.light {
  --mainColor: #40c8f0;
  --hoverColor: #4684cf;
  --backgroundColor: #f5f9f8;
  --darkOne: #1f579a;
  --darkTwo: #3973b8;
  --lightOne: #50bfd1;
  --lightTwo: #6bdef1;
}
  */
  .light {
  --mainColor: #658BB2;
    --hoverColor: #376AA0;
    --backgroundColor: #F0F5FA;
    --darkOne: #3F4F75;
    --darkTwo: #5E6C8A;
    --lightOne: #84B1D7;
    --lightTwo: #8BB5D7;
}

.dark {
  --mainColor: #40c8f0;
  --hoverColor: #4684cf;
  --backgroundColor: #152331;
  --darkOne: #e8f3f5;
  --darkTwo: #ffffff;
  --lightOne: #b4dbdc;
  --lightTwo: #cce4e9;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.big-wrapper {
  position: relative;
  padding: 1.7rem 0 2rem;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--backgroundColor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  position: relative;
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
}

header {
  position: relative;
  z-index: 70;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overlay {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo img {
  width: 220px;
  margin-right: 0.6rem;
  margin-top: -0.6rem;
}

.logo h3 {
  color: var(--darkTwo);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 700;
}

.links ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.links a {
  color: var(--lightTwo);
  margin-left: 5.0rem;
  display: inline-block;
  transition: 0.3s;
}

.links a:hover {
  color: var(--hoverColor);
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  color: #fff !important;
  background-color: var(--mainColor);
  border-radius: 16px;
  text-transform: capitalize;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--hoverColor);
  transform: scale(1) !important;
}

.hamburger-menu {
  position: relative;
  z-index: 99;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

.hamburger-menu .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

.big-wrapper.active .hamburger-menu .bar {
  background-color: transparent;
}

.big-wrapper.active .bar::before {
  transform: translateY(0) rotate(-45deg);
}

.big-wrapper.active .bar::after {
  transform: translateY(0) rotate(45deg);
}

.showcase-area .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}

.big-title {
  font-size: 1.4rem;
  color: var(--darkOne);
  text-transform: capitalize;
  line-height: 1.4;
}

.text {
  color: var(--lightOne);
  font-size: 1.1rem;
  margin: 1.9rem 0 2.5rem;
  max-width: 600px;
  line-height: 2.3;
}

.showcase-area .btn {
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

.person {
  width: 123%;
  transform: translate(15%, 25px);
}

.toggle-btn {
  display: inline-block;
  border: none;
  background: var(--darkTwo);
  color: var(--backgroundColor);
  outline: none;
  cursor: pointer;
  height: 39px;
  width: 39px;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: 0.3s;
}

.toggle-btn i {
  line-height: 39px;
}

.toggle-btn:hover {
  background: var(--mainColor);
}

.big-wrapper.light .toggle-btn i:last-child {
  display: none;
}

.big-wrapper.light .toggle-btn i:first-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:last-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:first-child {
  display: none;
}

.shape {
  position: absolute;
  z-index: 0;
  width: 500px;
  bottom: -180px;
  left: -15px;
  opacity: 0.1;
}

.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}

@keyframes appear {
  0% {
    clip-path: circle(30% at -25% -25%);
  }
  100% {
    clip-path: circle(150% at 0 0);
  }
}

@media screen and (max-width: 870px) {
  .hamburger-menu {
    display: flex;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: var(--mainColor);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 2rem 0;
  }

  .links .btn {
    background: none;
  }

  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }

  .big-wrapper.active .links {
    transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
  }

  .big-wrapper.active .overlay {
    pointer-events: all;
    opacity: 1;
  }

  .showcase-area {
    padding: 2.5rem 0;
    max-width: 700px;
    margin: 0 auto;
  }

  .showcase-area .container {
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 2rem;
  }

  .big-title {
    font-size: 1.1rem;
  }

  .text {
    font-size: 0.95rem;
    margin: 1.4rem 0 1.5rem;
  }

  .person {
    width: 100%;
    transform: none;
  }

  .logo h3 {
    font-size: 1.25rem;
  }

  .shape {
    bottom: -180px;
    left: -150px;
  }
}

@media screen and (max-width: 470px) {
  .container {
    padding: 0 1.5rem;
  }

  .big-title {
    font-size: 0.9rem;
  }

  .text {
    margin: 1.1rem 0 1.5rem;
  }

  .showcase-area .btn {
    font-size: 0.8rem;
  }
}

/* Styles de base pour les sections */
.section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  margin-top: -8rem; /* Uniformisation des marges négatives */
}

/* Transitions entre sections */
.section::before,
.section::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 180px; /* Augmentation de la hauteur pour une transition plus douce */
  background: var(--backgroundColor);
  z-index: 1;
}

.section::before {
  top: 0;
  left: 0;
  transform: skewY(-3deg); /* Angle plus subtil */
  transform-origin: 0 0;
}

.section::after {
  bottom: 0;
  right: 0;
  transform: skewY(3deg);
  transform-origin: 100%;
}

/* Styles spécifiques pour chaque section */
.section.features {
  background: linear-gradient(175deg, var(--backgroundColor) 0%, var(--lightTwo) 100%);
  padding-top: 12rem;
  z-index: 3;
}

.links a.active {
    color: var(--mainColor);
    font-weight: 600;
}

.links a.active:hover {
transform: none;
}
.section.about {
  background: var(--backgroundColor);
  padding-top: 10rem;
  z-index: 2;
}

.section.steps {
  background: linear-gradient(175deg, var(--backgroundColor) 0%, var(--lightTwo) 100%);
  padding-top: 12rem;
  z-index: 4;
}

.section.testimonials {
  background: var(--backgroundColor);
  padding-top: 10rem;
  z-index: 3;
}

.section.contact {
  background: linear-gradient(175deg, var(--backgroundColor) 0%, var(--lightTwo) 100%);
  padding-top: 12rem;
  z-index: 5;
}

.section.faq {
  background: var(--backgroundColor);
  padding-top: 10rem;
  z-index: 4;
}

/* Conteneurs de section */
.section .container {
  position: relative;
  z-index: 2;
  padding-top: 2rem; /* Espacement supplémentaire pour le contenu */
}

/* Formes flottantes */
.floating-shape {
  position: absolute;
  opacity: 0.05; /* Réduction de l'opacité */
  z-index: 0;
  pointer-events: none;
}

.shape-1 {
  top: 15%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: var(--mainColor);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}

.shape-2 {
  bottom: 15%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: var(--hoverColor);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(3deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Mode sombre */
.dark .section.features,
.dark .section.steps,
.dark .section.contact {
  background: linear-gradient(175deg, var(--backgroundColor) 0%, var(--darkOne) 100%);
}

/* Responsive */
@media screen and (max-width: 870px) {
  .section {
    padding: 6rem 0;
    margin-top: -6rem;
  }

  .section::before,
  .section::after {
    height: 120px;
  }

  .section .container {
    padding-top: 1rem;
  }

  .floating-shape {
    display: none;
  }
}

.section-title {
  text-align: center;
  color: var(--darkOne);
  font-size: 2rem;
  margin-bottom: 3rem;
}

.features-grid, .steps-grid, .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card, .step-card, .testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover, .step-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--mainColor);
  margin-bottom: 1rem;
}

.feature-card h3, .step-card h3 {
  color: var(--darkOne);
  margin-bottom: 1rem;
}

.feature-card p, .step-card p {
  color: var(--lightOne);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--mainColor);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
}

.testimonial-card {
  text-align: left;
}

.testimonial-content {
  color: var(--darkTwo);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-author h4 {
  color: var(--darkOne);
  margin: 0;
}

.testimonial-author p {
  color: var(--lightOne);
  margin: 0;
}

@media screen and (max-width: 870px) {
  .features-grid, .steps-grid, .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Styles pour la section formulaire */
.contact-form {
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--lightTwo);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mainColor);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.3rem;
}

.checkbox-group label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--mainColor);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-submit:hover {
  background: var(--hoverColor);
}

.form-message {
  text-align: center;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
}

.form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
}

/* Ajustements responsive */
@media screen and (max-width: 870px) {
  .contact-form {
    padding: 2rem;
    margin: 0 1rem;
  }
}

.subtitle {
  color: var(--mainColor);
  font-size: 2rem;
  margin-top: 1rem;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  color: var(--lightOne);
  font-size: 1.2rem;
  margin: -2rem auto 3rem;
  max-width: 800px;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content .text {
  font-size: 1.2rem;
  line-height: 1.8;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: var(--darkOne);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--lightOne);
  line-height: 1.6;
}

@media screen and (max-width: 870px) {
  .subtitle {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin: -1rem auto 2rem;
    padding: 0 1rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-content .text {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Styles du footer */
.footer {
  background-color: var(--darkOne);
  color: var(--backgroundColor);
  padding: 4rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section {
  padding: 0 1rem;
}

.footer-logo {
  width: 200px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: var(--lightTwo);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer h4 {
  color: var(--backgroundColor);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: var(--lightTwo);
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--mainColor);
}

.footer-section ul li i {
  margin-right: 0.5rem;
  color: var(--mainColor);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--backgroundColor);
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--mainColor);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--lightTwo);
  font-size: 0.9rem;
}

/* Responsive footer */
@media screen and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 3rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section {
    padding: 0;
    margin-bottom: 2rem;
  }

  .footer-logo {
    margin: 0 auto 1rem;
  }

  .social-links {
    justify-content: center;
  }

  .footer-section ul li i {
    width: 20px;
    text-align: center;
  }
}

/* Ajustement pour le mode sombre */
.dark .footer {
  background-color: var(--darkOne);
}

.dark .footer-section ul li a:hover {
  color: var(--mainColor);
}

/* Style pour les éléments flottants décoratifs */
.floating-shape {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: var(--mainColor);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  bottom: 20%;
  right: -5%;
  width: 200px;
  height: 200px;
  background: var(--hoverColor);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, 15px) rotate(5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Ajustement des cartes pour l'effet de chevauchement */
.features-grid, .steps-grid {
  position: relative;
  z-index: 2;
}

.feature-card, .step-card {
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover, .step-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Style pour le conteneur des sections */
.section .container {
  position: relative;
  z-index: 2;
}

/* Ajustement pour le mode sombre */
.dark .section.features,
.dark .section.faq {
  background: linear-gradient(170deg, var(--backgroundColor) 0%, var(--darkOne) 100%);
}

/* Media queries pour la réactivité */
@media screen and (max-width: 870px) {
  .section {
    padding: 6rem 0;
  }

  .section::before,
  .section::after {
    height: 100px;
  }

  .floating-shape {
    display: none;
  }
}

/* Section Steps */
.steps {
  background: linear-gradient(170deg, var(--backgroundColor) 0%, var(--lightTwo) 10%);
  padding: 8rem 0;
  margin-top: -4rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--mainColor);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.step-card h3 {
  color: var(--darkOne);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.step-card p {
  color: var(--lightOne);
  line-height: 1.6;
}

/* Section Testimonials */
.testimonials {
  background: var(--backgroundColor);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 4rem;
  color: var(--mainColor);
  opacity: 0.1;
  font-family: serif;
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  color: var(--darkOne);
  font-style: italic;
  line-height: 1.6;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  color: var(--darkOne);
  margin: 0;
  font-size: 1.1rem;
}

.testimonial-author p {
  color: var(--lightOne);
  margin: 0;
  font-size: 0.9rem;
}

/* Hover effects */
.step-card:hover,
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive design */
@media screen and (max-width: 1024px) {
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 2rem;
  }
}

@media screen and (max-width: 768px) {
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .step-card,
  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-author img {
    width: 50px;
    height: 50px;
  }
}

/* Dark mode adjustments */
.dark .step-card,
.dark .testimonial-card {
  background: var(--darkOne);
}

.dark .step-card h3,
.dark .testimonial-content p,
.dark .testimonial-author h4 {
  color: var(--backgroundColor);
}

.dark .step-card p,
.dark .testimonial-author p {
  color: var(--lightTwo);
}

/* Ajustement des z-index pour le chevauchement correct */
.contact .container {
  position: relative;
  z-index: 3;
}

.faq .container {
  position: relative;
  z-index: 2;
}

/* Ajustement pour le mode sombre */
.dark .contact {
  background: linear-gradient(170deg, var(--backgroundColor) 0%, var(--darkOne) 100%);
}

.dark .faq {
  background: var(--backgroundColor);
}

/* Styles pour le champ téléphone */
.phone-group {
  margin-bottom: 1.5rem;
}

.phone-input-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--lightTwo);
  border-radius: 8px;
  padding: 0.2rem;
}

.country-select {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-right: 1px solid var(--lightTwo);
  /* min-width: 120px; */
}

.country-select img {
  width: 24px;
  height: auto;
}

.country-select select {
  border: none;
  background: none;
  color: var(--darkOne);
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  padding-right: 1rem;
  width: 85px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234a90a7' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

.phone-input-container input[type="tel"] {
  border: none;
  padding: 0.8rem;
  width: 100%;
  outline: none;
}

/* Mode sombre */
.dark .phone-input-container {
  background: var(--darkOne);
}

.dark .country-select select,
.dark .phone-input-container input[type="tel"] {
  color: var(--backgroundColor);
}

.dark .country-select {
  border-right-color: var(--lightOne);
}

/* Style focus */
.phone-input-container:focus-within {
  border-color: var(--mainColor);
  box-shadow: 0 0 0 2px rgba(74, 144, 167, 0.2);
}

/* Responsive */
@media screen and (max-width: 480px) {
  .country-select {
    min-width: 110px;
  }
  
  .country-select select {
    width: 75px;
  }
}

.thank-you-container {
    max-width: 800px;
    margin: 100px auto;
    text-align: center;
    padding: 2rem;
}

.thank-you-container h1 {
    color: var(--mainColor);
    margin-bottom: 1.5rem;
}

.thank-you-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--darkTwo);
}

.thank-you-container .btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--mainColor);
    color: #fff;
    border-radius: 2rem;
    text-decoration: none;
    transition: 0.3s;
}

.thank-you-container .btn:hover {
    background-color: var(--mainColorLight);
}

/* Style pour l'étoile des champs obligatoires */
.required {
  color: #e74c3c;
  margin-right: 4px;
}

/* Ajustement pour l'alignement des labels */
.form-group label {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.5rem;
}

/* Ajustement spécifique pour la checkbox */
.checkbox-group label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Mode sombre */
.dark .required {
  color: #ff6b6b;
}