/********** Template CSS **********/
:root {
  --primary: #f9b800;
  --light: #f8fff3;
  --dark: #111a24;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(135, 80, 109, 0.6); */
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.booking {
  position: relative;
  margin-top: -100px !important;
  z-index: 1;
}

/*** Footer ***/
.newsletter {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  /* margin-top: -110px;
    padding-top: 180px; */
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}


.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 40%;
  background: #fff;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;

  @media (max-width: 600px) {
    width: 100%;
  }
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

header i {
  color: #f9b800;
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: #f9b800;
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: #f9b800;
  text-decoration: none;
  text-align: center !important;
}

.data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px;
  text-align: center;
}

.buttons .cookie-button {
  border: 2px solid #f9b800;
  color: #fff;
  padding: 8px 0;
  background: #f9b800;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.5s ease;
  max-width: 150px;
  border-radius: 0;
}

.buttons #acceptBtn:hover {
  background-color: transparent;
  color: #f9b800;
}

#declineBtn {
  background-color: #fff;
  color: #f9b800;
}

#declineBtn:hover {
  background-color: #f9b800;
  color: #fff;
}



  /* new styles  */

  :root {
    --dark-bg: #8a650d;
    --light-bg: #F8F9FA;
    --accent: #f9b800;
    --accent-hover: #df9a07;
    --auxiliary: #934cbf;
    --light-text: #E1E1E1;
    --dark-text: #3a2b42;
    --white: #FFFFFF;
    --light-gray: #ECECEC;
}

 /* Footer styles */
 .footer {
  padding-top: 4rem;
  background-color: var(--dark-bg) !important;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--auxiliary));
}

.footer .brand-link {
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer .brand-link:hover {
  color: var(--accent);
}

.footer .brand-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.footer .brand-link:hover::after {
  width: 100%;
}

.footer .btn-link {
  display: block;
  text-align: left;
  color: var(--light-text);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer .btn-link::before {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.footer .btn-link:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer .btn-link:hover::before {
  width: 20px;
}

.footer .contact-email {
  color: var(--light-text);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer .contact-email:hover {
  color: var(--accent);
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

@media (max-width: 767.98px) {
  .footer {
      padding-top: 3rem;
  }
  
  .footer .brand-link {
      margin-bottom: 1.5rem;
      display: inline-block;
  }
  
  .footer .contact-info {
      margin-top: 1.5rem;
  }
}

/* new styles  */
/* Styles généraux */
:root {
  --background-color: #f3f3f3;
  --text-color: #3c3c3c;
  --accent-color: #8a650d;
  --light-accent: rgba(138, 101, 13, 0.1);
  --header-height: 80px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}



h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-color);
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 12px 30px;
}

.btn-accent:hover {
  background-color: #76560b;
  color: white;
  transform: translateY(-2px);
}

/* Styles pour le header */
.site-header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: var(--transition);
  padding-top: 10px;
}

.site-header.scrolled {
  height: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  position: relative;
}

.site-logo span {
  color: var(--accent-color);
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 16px !important;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link:focus, .nav-link.active {
  color: var(--accent-color);
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover:after, .nav-link:focus:after, .nav-link.active:after {
  width: 30px;
}

/* Styles pour le bloc principal (hero) */
.hero-section {
  background-color: white;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: var(--light-accent);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 600px;
}

.hero-title span, .highlight {
  color: var(--accent-color);
  position: relative;
}

.hero-image-container {
  position: relative;
  z-index: 2;
}

.hero-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--light-accent);
  border-radius: 50%;
  top: -30px;
  left: -30px;
  z-index: -1;
}

.hero-image {
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-section::before {
    width: 100%;
    clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0 100%);
    height: 50%;
    top: auto;
    bottom: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image-container {
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-section {
    padding: 180px 0;
  }
}
/* Styles pour le bloc À propos de nous */
.about-section {
  padding: 100px 0;
  position: relative;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: var(--light-accent);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 70%);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
}

.about-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--accent-color);
}

.about-card-title {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}

.about-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--accent-color);
  opacity: 0.15;
  font-size: 3rem;
}

/* Styles pour le bloc Nos programmes */
.programs-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.programs-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: var(--light-accent);
  border-radius: 50%;
  z-index: 1;
}

.programs-section::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 100px;
  height: 100px;
  background-color: var(--light-accent);
  border-radius: 50%;
  z-index: 1;
}

.program-card {
  border-radius: 8px;
  background-color: var(--background-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 2;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.program-card-header {
  background-color: var(--accent-color);
  color: white;
  padding: 20px;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.program-card-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.program-card-body {
  padding: 25px;
}

.program-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.program-feature-icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 1.25rem;
}

.program-feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.program-feature-text p {
  margin: 0;
  font-size: 0.95rem;
}

.program-number {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
}

.program-cta {
  margin-top: 20px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .about-section, .programs-section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .about-card {
    margin-bottom: 30px;
  }
  
  .program-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .about-card-title {
    font-size: 1.3rem;
  }
  
  .program-card-header h3 {
    font-size: 1.3rem;
  }
}

/* Styles pour le bloc Nos formules d'abonnement */
.pricing-section {
  padding: 100px 0;
  background-color: var(--background-color);
  position: relative;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
  height: 100px;
  background-color: white;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
}

.pricing-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 2;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  padding: 30px 25px;
  text-align: center;
  position: relative;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.pricing-subtitle {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.pricing-img-container {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.pricing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.pricing-card:hover .pricing-img {
  transform: scale(1.05);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 25px 0 15px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-features {
  padding: 30px 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.pricing-feature:last-child {
  margin-bottom: 0;
}

.pricing-feature-icon {
  color: var(--accent-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.pricing-cta {
  padding: 0 25px 30px;
  text-align: center;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: white;
  font-size: 0.8rem;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 500;
  z-index: 2;
}

/* Styles pour le bloc Témoignages */
.testimonials-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(138, 101, 13, 0.2), transparent);
}

.testimonial-card {
  background-color: var(--background-color);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-author-title {
  font-size: 0.9rem;
  opacity: 0.7;
}

.testimonial-rating {
  display: flex;
  margin-bottom: 15px;
}

.rating-star {
  color: var(--accent-color);
  margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .pricing-section, .testimonials-section {
    padding: 70px 0;
  }
  
  .pricing-card.featured {
    transform: scale(1);
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .pricing-price {
    font-size: 2rem;
  }
  
  .pricing-title {
    font-size: 1.3rem;
  }
  
  .testimonial-card {
    margin-bottom: 30px;
  }
}

/* Styles pour le bloc Avantages */
.advantages-section {
  padding: 100px 0;
  position: relative;
  background-color: white;
}

.advantages-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--light-accent);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.advantages-content {
  position: relative;
  z-index: 2;
}

.advantages-image-container {
  position: relative;
  margin-bottom: 30px;
}

.advantages-image {
  border-radius: 10px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
}

.advantage-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: var(--light-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.advantage-icon span {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.advantage-text h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.advantage-text p {
  margin: 0;
  line-height: 1.6;
}

/* Styles pour le bloc Appel à l'action */
.cta-section {
  padding: 100px 0;
  background-color: var(--background-color);
  position: relative;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-image-container {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-text {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
}

.cta-section.image-right .cta-text {
  margin-right: -50px;
}

.cta-section.image-left .cta-text {
  margin-left: -50px;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-description {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Styles pour le bloc Contacts */
.contact-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: var(--light-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-icon span {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-details p, .contact-details a {
  margin: 0;
  line-height: 1.6;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: var(--transition);
  color: var(--accent-color);
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

/* Styles pour le formulaire */
.form-section {
  padding: 0 0 100px;
  background-color: white;
}

.form-container {
  background-color: var(--background-color);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-title {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.form-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
}

.form-floating {
  margin-bottom: 20px;
}

.form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 15px;
  height: auto;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(138, 101, 13, 0.25);
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #76560b;
  border-color: #76560b;
  transform: translateY(-2px);
}

/* Media queries */
@media (max-width: 991.98px) {
  .advantages-section, .cta-section, .contact-section, .form-section {
    padding: 70px 0;
  }
  
  .advantages-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-section.image-right .cta-text,
  .cta-section.image-left .cta-text {
    margin-right: 0;
    margin-left: 0;
    margin-top: 30px;
  }
  
  .cta-image-container {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .cta-title {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 30px 20px;
  }
}