/********** Template CSS **********/
:root {
  --primary: #044e32;
  --light: #f8fff3;
  --dark: #111a24;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  min-height: 1.2rem;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-message:not(:empty) {
  opacity: 1;
}

/* Додатковий стиль для полів з помилками */
.form-control.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !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: #dc3545;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}
:root {
  --bg-color: #f8fffc;
  --accent-color: #044e32;
  --text-color: #666565;
  --white: #ffffff;
}

  /* Footer Styles */
  .footer {
    background-color: var(--dark) !important;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-brand {
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-brand:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-link {
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.5rem 0;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-link:hover {
    color: #dc3545 !important;
    transform: translateX(5px);
}

.footer-email {
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-email-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-section-title {
    color: #dc3545;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Copyright section */
.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-brand {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
}

/* 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: #f2f2f2;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;
  width: 100%;

  @media (max-width: 600px) {
    width: 100%;
  }
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

header i {
  color: #044e32;
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: #044e32;
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: #044e32;
  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 #044e32;
  color: #fff;
  padding: 8px 0;
  background: #044e32;
  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: #044e32;
}

#declineBtn {
  background-color: #fff;
  color: #044e32;
}

#declineBtn:hover {
  background-color: #044e32;
  color: #fff;
}

/* new styles  */
/* Variables globales */
:root {
  --bg-primary: #fff;
  --text-primary: #383838;
  --accent-color: #044e32;
  --heading-color: #241111;
  --border-radius: 0;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
}


/* Styles pour le bloc Formulaire */
.form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.form-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.form-container {
  background: var(--bg-primary);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.form-floating {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-floating .form-control {
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 1rem 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
}

.form-floating .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(78, 21, 4, 0.15);
  background: transparent;
}

.form-floating .form-control:focus ~ label {
  color: var(--accent-color);
}

.form-floating label {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-floating label .material-icons-outlined {
  color: var(--accent-color);
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  display: none;
}

.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(78, 21, 4, 0.25);
}

/* Responsive pour les blocs finaux */
@media (max-width: 768px) {
  .contact-title, .form-title {
    font-size: 2rem;
  }
  
  .contact-info {
    padding: 2rem;
  }
  
  .form-container {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .social-links {
    gap: 0.75rem;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

/* new styles  */
:root {
  --primary: #044e32;
  --primary-light: rgba(4, 78, 50, 0.1);
  --primary-dark: #033a25;
  --white: #ffffff;
  --light-blue: #f0f5fa;
  --text-dark: #0a2540;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  --border-radius: 8px;
}



/* Стилі для головного блоку */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  overflow: hidden;
  background: linear-gradient(135deg, #f0f5fa 0%, #e0e8f2 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.85);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.hero-content:hover {
  transform: translateY(-5px);
}

.hero-title {
  color: var(--primary);
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-dark);
}

.hero-btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 15px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.hero-btn:hover {
  background-color: transparent;
  color: var(--primary);
}

.hero-btn .material-icons {
  vertical-align: middle;
  margin-left: 8px;
  font-size: 1.1rem;
}

/* Анімація для елементів при завантаженні сторінки */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Медіа-запити для адаптивності */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-content {
    padding: var(--spacing-md);
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-content {
    padding: var(--spacing-md);
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: var(--spacing-sm);
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
  }
  .hero-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
  .hero-content {
    padding: var(--spacing-sm);
  }
}
/* Стилі для блоку "Notre philosophie" */
.philosophy-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
}

.philosophy-image {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  margin: 0 auto;
  display: block;
}

.philosophy-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.philosophy-content {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.philosophy-title {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.philosophy-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.philosophy-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.philosophy-text em {
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
}

/* Стилі для блоку "Pourquoi le développement personnel compte" */
.why-section {
  background-color: var(--primary);
  color: var(--white);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
}

.why-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
}

.why-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
  color: #fff;
}


.why-text {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.why-text p:first-of-type {
  margin-bottom: var(--spacing-md);
}

/* Медіа-запити для адаптивності */
@media (max-width: 991.98px) {
  .philosophy-image {
    max-width: 450px;
    margin-bottom: var(--spacing-md);
  }
  .philosophy-title, .why-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767.98px) {
  .philosophy-image {
    max-width: 350px;
  }
  .philosophy-title, .why-title {
    font-size: 2rem;
  }
  .philosophy-text, .why-text {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .philosophy-section, .why-section {
    padding: var(--spacing-lg) 0;
  }
  .philosophy-title, .why-title {
    font-size: 1.8rem;
  }
  .philosophy-image {
    max-width: 280px;
  }
}
/* Стилі для блоку "Méthodes d'apprentissage" */
.methods-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--light-blue);
}

.methods-title {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  position: relative;
}



.methods-text {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
}

.methods-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.methods-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
}

.methods-list li::before {
  content: "school";
  font-family: 'Material Icons';
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 1.2rem;
}

.methods-image {
  width: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.methods-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.methods-image-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Стилі для блоку "Thèmes et axes clés" */
.themes-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
}

.themes-title {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  position: relative;
  text-align: center;
}


.theme-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.theme-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.theme-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Медіа-запити для адаптивності */
@media (max-width: 991.98px) {
  .methods-title, .themes-title {
    font-size: 2.2rem;
  }
  .methods-image {
    max-height: 350px;
    margin-top: var(--spacing-md);
  }
}

@media (max-width: 767.98px) {
  .methods-title, .themes-title {
    font-size: 2rem;
  }
  .methods-text, .methods-list li {
    font-size: 1rem;
  }
  .theme-name {
    font-size: 1.1rem;
  }
  .theme-card {
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 575.98px) {
  .methods-section, .themes-section {
    padding: var(--spacing-lg) 0;
  }
  .methods-title, .themes-title {
    font-size: 1.8rem;
  }
  .methods-image {
    max-height: 300px;
  }
}
/* Стилі для блоку "Blog / Articles" */
.blog-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--light-blue);
}

.blog-title {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  position: relative;
  text-align: center;
}

.article-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: var(--spacing-md);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.article-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.article-content {
  padding: var(--spacing-md);
}

.article-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.article-text {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.article-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-link:hover {
  color: var(--primary-dark);
}

.article-link .material-icons {
  font-size: 1.1rem;
  margin-left: 5px;
}

/* Стилі для блоку "Témoignages des lecteurs" */
.testimonials-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
  position: relative;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--primary-light) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--primary-light) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.testimonials-title {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  position: relative;
  text-align: center;
}


.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-left: 20px;
}

.testimonial-text::before {
  content: "format_quote";
  font-family: 'Material Icons';
  color: var(--primary);
  position: absolute;
  left: -15px;
  top: -5px;
  font-size: 1.5rem;
  opacity: 0.3;
  transform: rotate(180deg);
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: right;
}

/* Медіа-запити для адаптивності */
@media (max-width: 991.98px) {
  .blog-title, .testimonials-title {
    font-size: 2.2rem;
  }
  .article-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .blog-title, .testimonials-title {
    font-size: 2rem;
  }
  .article-image {
    height: 180px;
  }
  .testimonial-text {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .blog-section, .testimonials-section {
    padding: var(--spacing-lg) 0;
  }
  .blog-title, .testimonials-title {
    font-size: 1.8rem;
  }
  .article-image {
    height: 160px;
  }
}
/* Стилі для блоку "Soutenir le projet" */
.support-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--light-blue);
  position: relative;
}

.support-title {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  position: relative;
}


.support-text {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  max-width: 800px;
}

.plan-container {
  margin-top: var(--spacing-md);
}

.plan-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  height: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: var(--spacing-md);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.plan-price {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.plan-features {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.plan-btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.plan-btn:hover {
  background-color: transparent;
  color: var(--primary);
}

.plan-note {
  font-size: 0.95rem;
  font-style: italic;
  margin-top: var(--spacing-md);
  color: var(--text-dark);
}

.support-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Стилі для блоку "Nos 4 atouts essentiels" */
.assets-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
}

.assets-title {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  position: relative;
  text-align: center;
}

.asset-card {
  padding: var(--spacing-md);
  height: 100%;
  border-radius: var(--border-radius);
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
}


.asset-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.asset-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.asset-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.asset-text {
  font-size: 1rem;
  color: var(--text-dark);
}

/* Медіа-запити для адаптивності */
@media (max-width: 991.98px) {
  .support-title, .assets-title {
    font-size: 2.2rem;
  }
  .support-text {
    font-size: 1rem;
  }
  .plan-title {
    font-size: 1.2rem;
  }
  .asset-title {
    font-size: 1.15rem;
  }
  .support-image {
    margin-top: var(--spacing-md);
  }
}

@media (max-width: 767.98px) {
  .support-title, .assets-title {
    font-size: 2rem;
  }
  .support-section, .assets-section {
    padding: var(--spacing-lg) 0;
  }
  .asset-card {
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 575.98px) {
  .support-title, .assets-title {
    font-size: 1.8rem;
  }
  .plan-card {
    margin-bottom: var(--spacing-sm);
  }
}
/* Стилі для блоку "Contact" */
.contact-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--light-blue);
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(240, 245, 250, 0.7));
  z-index: 0;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-title {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.contact-text {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  max-width: 600px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: var(--spacing-sm);
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.contact-email .material-icons {
  margin-right: 10px;
  font-size: 1.5rem;
}

.contact-image-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  max-width: 450px;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.contact-image:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Медіа-запити для адаптивності */
@media (max-width: 991.98px) {
  .contact-title {
    font-size: 2.2rem;
  }
  .contact-text {
    font-size: 1rem;
  }
  .contact-email {
    font-size: 1.1rem;
  }
  .contact-image {
    max-width: 400px;
    margin-top: var(--spacing-md);
  }
}

@media (max-width: 767.98px) {
  .contact-title {
    font-size: 2rem;
  }
  .contact-section {
    padding: var(--spacing-lg) 0;
  }
  .contact-image {
    max-width: 350px;
  }
}

@media (max-width: 575.98px) {
  .contact-title {
    font-size: 1.8rem;
  }
  .contact-email {
    font-size: 1rem;
  }
  .contact-card {
    padding: var(--spacing-md);
  }
  .contact-image {
    max-width: 280px;
  }
}