/********** 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: #9378b8;
    --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: #9378b8;
  --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);
}

.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 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);
  border-radius: 20px;
}

.form-title {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}


.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;
  }
}


  /* new styles  */

  /* Загальні стилі */
:root {
  --main-bg-color: #f9f4ff;
  --white: #FFFFFF;
  --accent-color: #9378b8;
  --text-dark: #212529;
  --overlay-color: rgba(147, 120, 184, 0.1);
}


/* Стилі для головного блоку */
.hero-section {
  position: relative;
  padding: 200px 0;
  overflow: hidden;
  background-color: #97f3db;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/personal-development.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.accent-strip {
  position: relative;
  display: inline-block;
}

.accent-strip::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: rgba(147, 120, 184, 0.3);
  z-index: -1;
  transform: rotate(-1deg);
}

.btn-contact {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(147, 120, 184, 0.3);
}

.btn-contact:hover {
  background-color: #826da6;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(147, 120, 184, 0.4);
}

/* Адаптивність */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-section {
    padding: 80px 0;
  }
  
  .accent-strip::after {
    height: 25px;
    bottom: 5px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-section {
    padding: 100px 0;
  }
}
/* Загальні стилі вже додані в попередньому блоці */

/* Стилі для блоку "À propos de nous" */
.about-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: var(--white);
}

.about-section .diagonal-line {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

.about-section .diagonal-line::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 100%;
  background-color: var(--accent-color);
  transform: rotate(45deg) translateX(500px);
  opacity: 0.6;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image-container {
  position: relative;
  height: 100%;
}

.about-image {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(147, 120, 184, 0.2);
  position: relative;
  z-index: 2;
}

.about-image.main {
  width: 100%;
  height: auto;
}

.about-image.secondary {
  position: absolute;
  width: 60%;
  top: -20%;
  right: -15%;
  z-index: 1;
  border: 4px solid white;
}

/* Стилі для блоку "Pourquoi le développement personnel est important" */
.why-important {
  padding: 80px 0;
  background-color: #fffdf7;
}

.why-important-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}



.why-important-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Стилі для блоку "Méthodes d'apprentissage" */
.methods-section {
  padding: 80px 0;
  background-color: var(--main-bg-color);
}

.methods-title-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.methods-title-box {
  background-color: #ffd166;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
}

.methods-title {
  font-size: 1.8rem;
  margin: 0;
  color: #333;
}

.method-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(147, 120, 184, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(147, 120, 184, 0.2);
}

.method-icon {
  color: var(--accent-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.method-icon.custom {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-icon.custom svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--accent-color);
  stroke-width: 2;
}

.method-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.method-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.method-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.method-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.method-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.method-list li strong {
  font-weight: 600;
  color: var(--text-dark);
}

.btn-discover {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-discover:hover {
  background-color: #826da6;
  transform: translateY(-2px);
}

/* Адаптивність */
@media (max-width: 992px) {
  .about-image.secondary {
    display: none;
  }
  
  .about-title {
    font-size: 2.8rem;
  }
  
  .method-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-section {
    padding: 60px 0;
  }
  
  .why-important-title {
    font-size: 2rem;
  }
  
  .methods-title {
    font-size: 1.5rem;
  }
}
/* Додаткові стилі для нових блоків */

/* Стилі для блоку "Thèmes et domaines clés" */
.themes-section {
  padding: 80px 0;
  background-color: var(--white);
}

.themes-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}


.theme-item {
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 15px;
  background-color: var(--main-bg-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(147, 120, 184, 0.15);
}

.theme-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.theme-name i {
  margin-right: 12px;
  color: var(--accent-color);
}

.theme-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Стилі для блоку "Nos formules d'abonnement" */
.pricing-section {
  padding: 100px 0;
  background-color: var(--main-bg-color);
}

.pricing-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-heading {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(147, 120, 184, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 350px;
  width: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(147, 120, 184, 0.2);
}

.pricing-card-header {
  padding: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.plan-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.plan-price span {
  font-size: 1rem;
  color: #777;
  font-weight: 400;
}

.pricing-card-body {
  padding: 30px;
}

.pricing-features {
  list-style-type: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '\e876';
  font-family: 'Material Icons';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.btn-plan {
  display: block;
  width: 100%;
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-plan:hover {
  background-color: #826da6;
  color: white;
}

.featured-plan {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--accent-color);
}

.featured-plan::before {
  content: 'Populaire';
  position: absolute;
  top: 15px;
  right: -35px;
  background-color: var(--accent-color);
  color: white;
  padding: 5px 40px;
  font-size: 0.8rem;
  transform: rotate(45deg);
  z-index: 1;
}

/* Стилі для блоку з двома картками (як на картинці) */
.info-cards-section {
  padding: 80px 0;
  background-color: #f0f3f7;
}

.info-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card-category {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 15px;
}

.info-card-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}

.info-card-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.info-card-link:hover {
  color: #826da6;
}

.info-card-link .material-icons-outlined {
  margin-left: 5px;
  font-size: 1.2rem;
}

.info-card-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.info-card-button:hover {
  background-color: #826da6;
  color: white;
  transform: translateY(-2px);
}

/* Адаптивність для нових блоків */
@media (max-width: 992px) {
  .pricing-cards-container {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .info-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .pricing-title {
    font-size: 2rem;
  }
  
  .plan-name {
    font-size: 1.5rem;
  }
  
  .plan-price {
    font-size: 1.8rem;
  }
  
  .info-card-title {
    font-size: 1.8rem;
  }
  
  .theme-item {
    padding: 20px;
  }
}
/* Стилі для блоку "Témoignages de nos lecteurs" */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  background-image: url('../img/advantages-2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.testimonials-container {
  position: relative;
  z-index: 2;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}



.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 510px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 4rem;
  font-family: Georgia, serif;
  position: absolute;
  top: -20px;
  left: -15px;
  color: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-author-info {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Стилі для блоку "Contactez-nous" */
.contact-section {
  padding: 80px 0;
  background-color: var(--white);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}



.contact-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: center;
}

.contact-email {
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.contact-email:hover {
  color: #826da6;
}

.contact-email::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.contact-email:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.contact-card {
  background-color: var(--main-bg-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(147, 120, 184, 0.1);
  margin-top: 40px;
}

.contact-icon {
  font-size: 3rem;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 20px;
}

/* Адаптивність для нових блоків */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-title,
  .contact-title {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .contact-card {
    padding: 30px;
  }
}