﻿:root {
  --primary: #521a17; 
  --secondary: #f8efed; 
  --accent: #7990e4; 
  --accent-hover: #86481b; 
  --dark: #521a17; 
  --auxiliary: #f8b9ed;
  --light-text: #F8F8F8; 
  --dark-text: #521a17; 
  --white: #FFFFFF; 
  --light-gray: #f8b9ed; 
  --background-color: #f8efed; 
  --text-color: var(--dark-text); 
  --accent-color: var(--accent); 
  --light-accent: rgba(121, 144, 228, 0.15); 
  --light-bg: #f8efed;
  --dark-bg: #521a17;
  --header-height: 80px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

body {
  font-family: 'Roboto', sans-serif; 
  color: var(--text-color);
  background-color: gray;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  background-color: var(--accent-color);
  color: var(--dark-bg); 
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.back-to-top:hover {
  background-color: var(--accent-hover);
}


#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;
}


.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
  border-radius: 5px;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-accent { 
  color: var(--dark-bg); 
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn.btn-outline-secondary { 
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: transparent;
}

.btn.btn-primary:hover,
.btn.btn-secondary:hover,
.btn.btn-accent:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--dark-bg); 
}

.btn.btn-outline-secondary:hover {
  background-color: var(--accent-color);
  color: var(--dark-bg);
}


.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: 5px;
}


.site-header {
  background-color: black!important; 
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); 
  transition: var(--transition);
  padding-top: 0;
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  height: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.site-logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-color); 
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

.site-logo:hover {
  color: var(--accent-hover);
}

.nav-link {
  color: var(--light-text)!important; 
  font-weight: 500;
  padding: 10px 18px !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: 80%;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}


.hero-section {
    background-color: var(--dark-bg); 
    color: var(--light-text);
    padding: 80px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: black!important; 
}

.hero-title .highlight {
    color: var(--accent-color); 
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: black!important; 
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-pattern {
    position: absolute;
    width: 90%;
    height: 90%;
    background-color: var(--light-accent); 
    border-radius: 10px;
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    box-shadow: var(--shadow);
}



.advantages-section {
    background-color: var(--background-color);
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white); 
    margin-bottom: 20px;
}

.lead {
    font-size: 1.15rem;
    color: var(--light-text);
}

.advantages-list-column {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; 
    justify-content: center;
}

.advantage-item-column {
    background-color: var(--light-bg); 
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1 1 calc(50% - 15px); 
    max-width: calc(50% - 15px);
}

@media (max-width: 768px) {
    .advantage-item-column {
        flex: 1 1 100%; 
        max-width: 100%;
    }
}


.advantage-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-bg); 
    font-size: 28px;
}

.advantage-text h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent-color); 
}

.advantage-text p {
    font-size: 1rem;
    color: var(--light-text);
}


.pricing-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.pricing-card {
    background-color: var(--light-bg)!important; 
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.pricing-card.featured {
    border: 2px solid var(--accent-color); 
    transform: translateY(-10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color); 
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white); 
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--light-text);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1; 
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--light-text);
    text-align: left;
}

.pricing-feature-icon {
    color: var(--accent-color); 
    margin-right: 10px;
    font-size: 24px;
}

.pricing-cta {
    margin-top: auto; 
}



.cta-section {
    background-color: var(--background-color);
    padding: 80px 0;
}

.cta-section .row {
    margin-bottom: 60px; 
}

.cta-section .row:last-child {
    margin-bottom: 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-text {
    padding: 20px;
    background-color: var(--light-bg); 
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white); 
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 25px;
}

.cta-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}


.testimonials-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.testimonial-card {
    background-color: var(--light-bg); 
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px; 
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--accent-color); 
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white); 
}

.testimonial-author-title {
    font-size: 0.9rem;
    color: var(--light-text);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.rating-star {
    color: var(--accent-color); 
    font-size: 20px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-text);
}



.contact-section {
    background-color: var(--background-color);
    padding: 80px 0;
}

.form-container {
    background-color: var(--light-bg); 
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white); 
    margin-bottom: 30px;
    text-align: center;
}

.form-floating {
    margin-bottom: 20px;
}

.form-floating .form-control {
    background-color: var(--dark-bg); 
    border: 1px solid var(--light-gray); 
    color: var(--white); 
}

.form-floating .form-control:focus {
    border-color: var(--accent-color); 
    box-shadow: 0 0 0 0.25rem var(--light-accent);
}

.form-floating label {
    color: var(--light-gray); 
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
    color: var(--accent-color); 
}


.footer {
  position: relative;
  background-color: black!important;
  color: var(--light-text);
  padding-top: 4rem;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--auxiliary)); 
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  border: 1px solid var(--light-text);
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 10px;
  margin: 6px;
  border: 1px solid var(--auxiliary); 
  border-radius: 12px;
  text-align: left;
  color: var(--light-text);
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link:hover {
  box-shadow: none;
  color: var(--dark-bg); 
  background-color: var(--accent-hover);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--accent-color);
}

.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;
}


@import url('../css2');

.site-logo, .hero-title, .section-title, .pricing-title, .cta-title, .form-title, .testimonial-author-name {
    font-family: 'Roboto', sans-serif; 
}
---

.strengths-section {
    background-color: var(--background-color); 
    padding: 80px 0;
}

.strengths-section .section-title {
    color: var(--white); 
    margin-bottom: 20px;
}

.strengths-section .lead {
    color: var(--light-text); 
    margin-bottom: 50px;
}

.strength-card {
    background-color: black; 
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid transparent; 
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color); 
}

.strength-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: var(--dark-bg); 
    flex-shrink: 0;
}

.strength-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white); 
    margin-bottom: 15px;
}

.strength-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-text); 
}


@media (max-width: 991.98px) {
    .strength-card {
        padding: 25px;
    }
    .strength-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .strengths-section {
        padding: 60px 0;
    }
    .strengths-section .section-title {
        font-size: 2rem;
    }
    .strengths-section .lead {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .strength-card {
        padding: 20px;
    }
    .strength-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 20px;
    }
    .strength-title {
        font-size: 1.4rem;
    }
    .strength-text {
        font-size: 0.95rem;
    }
}
.cookie-wrapper {
  background-color: var(--dark-bg); 
  color: var(--light-text);
  border: 1px solid var(--accent-color); 
}

.cookie-wrapper h2 {
    color: var(--white); 
}

.cookie-wrapper a {
    color: var(--accent-color); 
}

.cookie-button {
  background-color: var(--accent-color); 
  color: var(--dark-bg); 
}

.cookie-button#declineBtn {
  background-color: var(--light-gray); 
  color: var(--white);
}

@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;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

  @media (max-width: 600px) {
    width: 100%;
    border-radius: 0;
  }
}

.cookie-wrapper.show { 
  right: 20px;
}

.hidden {
  display: none;
}

.cookie-wrapper h2 {
  color: var(--primary); 
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.cookie-wrapper .data p a {
  color: var(--primary); 
  text-decoration: none;
}

.cookie-wrapper .data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px 0px; 
  text-align: center;
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.buttons .cookie-button {
  border: 2px solid var(--primary);
  color: #fff;
  padding: 10px 15px;
  background: var(--primary);
  cursor: pointer;
  width: calc(50% - 5px); 
  transition: all 0.5s ease;
  max-width: 180px; 
  border-radius: 5px; 
  font-size: 1rem;
}

.buttons #acceptBtn:hover {
  background-color: transparent;
  color: var(--primary);
}

#declineBtn {
  background-color: var(--white);
  color: var(--primary);
}

#declineBtn:hover {
  background-color: var(--primary);
  color: var(--white);
}



.footer {
  padding-top: 4rem;
  background-color: var(--dark-bg); 
  color: var(--light-text); 
  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: 28px; 
  font-weight: 700;
  color: var(--light); 
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 20px; 
}

.footer .brand-link:hover {
  color: var(--accent);
  transform: translateX(0); 
}

.footer .contact-email {
  color: var(--light-text); 
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 15px;
  margin-bottom: 20px; 
}

.footer .contact-email:hover {
  transform: translateX(5px);
  color: var(--accent);
}

.footer .footer_links {
  display: flex;
  flex-direction: column; 
  align-items: flex-start; 
  margin-top: 20px; 
}

.footer .btn.btn-link {
  display: block;
  text-align: left;
  color: var(--light-text); 
  text-decoration: none;
  padding: 8px 0; 
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  margin: 0; 
  border: none; 
}

.footer .btn.btn-link:hover {
  color: var(--accent);
  transform: translateX(5px);
  background-color: transparent; 
  box-shadow: none;
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  color: var(--light-text); 
  text-align: center; 
}

.footer .copyright a {
  color: var(--accent); 
}


@media (max-width: 767.98px) {
  .footer {
    padding-top: 3rem;
    text-align: center; 
  }

  .footer .brand-link {
    margin-bottom: 1rem; 
    font-size: 24px; 
  }

  .footer .contact-email {
    justify-content: center; 
    margin-bottom: 1rem;
  }

  .footer .footer_links {
    align-items: center; 
    margin-top: 1rem;
    padding-bottom: 20px; 
  }

  .footer .btn.btn-link {
    padding: 6px 0; 
  }

  .footer .copyright {
    margin-top: 1.5rem; 
  }

  
  .footer .col-md-6,
  .footer .col-lg-6,
  .footer .col-md-12 {
    width: 100%;
    margin-bottom: 20px; 
  }

  .footer .col-md-6:last-of-type,
  .footer .col-lg-6:last-of-type,
  .footer .col-md-12:last-of-type {
    margin-bottom: 0; 
  }
}




h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700; 
  line-height: 1.3;
  color: var(--dark-text); 
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary); 
}

.lead {
  font-size: 1.1rem;
  color: var(--dark-text);
  opacity: 0.8;
}

.btn-accent {
  background-color: var(--accent-color);
  color: white!important;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 15px; 
  letter-spacing: 1.5px; 
  font-weight: 600; 
  padding: 14px 35px; 
  border-radius: 8px; 
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  color: white;
  transform: translateY(-3px); 
  box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
}


.hero-section {
  background-color: var(--white);
  padding: 120px 0 80px 0; 
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 600px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%; 
  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;
  text-align: left;
}

.hero-title {
  font-size: 3.5rem; 
  font-weight: 800; 
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--dark-text);
}

.hero-subtitle {
  font-size: 1.3rem; 
  margin-bottom: 2.5rem; 
  font-weight: 400;
  max-width: 650px;
  color: var(--text-color);
}

.hero-title span,
.highlight {
  color: var(--accent-color); 
  position: relative;
}

.hero-image-container {
  position: relative;
  z-index: 2;
  padding-left: 30px; 
}

.hero-pattern {
  position: absolute;
  width: 250px; 
  height: 250px;
  background-color: var(--light-accent);
  border-radius: 50%;
  top: -50px; 
  left: -50px; 
  z-index: -1;
  opacity: 0.7; 
}

.hero-image {
  border-radius: 12px; 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); 
  position: relative;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 100px 0;
    text-align: center;
  }

  .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: 3rem;
  }

  .hero-image-container {
    margin-top: 3rem;
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-section {
    padding: 160px 0 80px 0; 
  }
}


.advantages-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.advantages-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.advantages-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; 
}

.advantage-item {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 30px;
  text-align: center;
  flex: 1 1 calc(33.333% - 40px); 
  max-width: calc(33.333% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  font-size: 3.5rem; 
  color: var(--accent-color);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--light-accent);
}

.advantage-text h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.advantage-text p {
  font-size: 1rem;
  color: var(--dark-text);
}

@media (max-width: 991.98px) {
  .advantage-item {
    flex: 1 1 calc(50% - 30px); 
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 767.98px) {
  .advantages-section {
    padding: 60px 0;
  }
  .advantage-item {
    flex: 1 1 100%; 
    max-width: 100%;
  }
  .advantage-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
  }
  .advantage-text h4 {
    font-size: 1.3rem;
  }
}


.pricing-section {
  padding: 80px 0;
  background-color: var(--white);
}

.pricing-card {
  background-color: var(--light-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 40px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--light-gray);
}

.pricing-card.featured {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-subtitle,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-price span,
.pricing-card.featured .pricing-feature div {
  color: var(--white);
}

.pricing-card.featured .pricing-feature-icon {
  color: var(--light); 
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.pricing-card.featured .pricing-title {
  color: var(--white);
}

.pricing-subtitle {
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.pricing-card.featured .pricing-subtitle {
  color: var(--light-text);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.pricing-card.featured .pricing-price {
  color: var(--white);
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-color);
}

.pricing-card.featured .pricing-price span {
  color: var(--light-text);
}

.pricing-features {
  text-align: left;
  margin-bottom: 30px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--dark-text);
}

.pricing-card.featured .pricing-feature {
  color: var(--light-text);
}

.pricing-feature-icon {
  color: var(--primary);
  margin-right: 10px;
  font-size: 1.3rem;
}

.pricing-card.featured .pricing-feature-icon {
  color: var(--light);
}

.pricing-cta .btn {
  width: 100%;
  padding: 12px 0;
  font-size: 1.1rem;
}

.pricing-cta .btn-outline-secondary {
  border-color: var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.pricing-cta .btn-outline-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}


.cta-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.cta-section .row {
  margin-bottom: 60px; 
}

.cta-section .row:last-child {
  margin-bottom: 0;
}

.cta-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.cta-image:hover {
  transform: scale(1.02);
}

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-text {
  padding: 20px;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--dark-text);
}

.cta-section.image-right .cta-image-container {
  order: 2;
}

.cta-section.image-right .cta-content {
  order: 1;
}

@media (max-width: 991.98px) {
  .cta-section .row {
    flex-direction: column;
  }
  .cta-section.image-right .cta-image-container,
  .cta-section.image-right .cta-content {
    order: unset; 
  }
  .cta-text {
    text-align: center;
    padding: 0;
    margin-top: 30px;
  }
  .cta-image-container {
    padding: 0;
  }
}


.testimonials-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--accent-color);
}

.testimonial-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-author-title {
  font-size: 0.9rem;
  color: var(--dark-text);
  opacity: 0.7;
}

.testimonial-rating {
  margin-bottom: 15px;
}

.rating-star {
  color: #FFD700; 
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}


.contact-section {
  padding: 80px 0;
  background-color: var(--white);
}

.form-container {
  background-color: var(--light-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 40px;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary);
}

.form-floating {
  margin-bottom: 20px;
}

.form-control {
  border-radius: 5px;
  border: 1px solid var(--light-gray);
  padding: 15px;
  font-size: 1rem;
  color: var(--dark-text);
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25); 
}

.form-floating label {
  color: var(--dark-text);
  opacity: 0.7;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  padding: 15px 0;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}


.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;
}

.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;
}


.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;
}


@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;
  }
}


.pricing-section {
  padding: 100px 0;
  background-color: var(--background-color);
  position: relative;
}


.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;
}

.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;
}


.testimonials-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}


.testimonial-card {
  background-color: var(--background-color);
  border-radius: 12px;
  padding: 30px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  height: 100%;
  margin: 1rem 0;
}

.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;
}


@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;
  }
}


.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;
  background-color: var(--auxiliary);
  color: var(--light);
  border-radius: 2rem;
  padding: 3rem;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--dark-text);
  padding: 2rem;
  border-radius: 2rem;
}

.advantage-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: var(--background-color);
  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 {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.advantage-text p {
  color: var(--light);
  margin: 0;
  line-height: 1.6;
}


.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-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;
}


.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);
}


.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-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: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}


@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;
  }
}

.footer_links {
  display: flex;
  flex-direction: row;
}


.advantages-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.advantages-list-column { 
  display: flex;
  flex-direction: column; 
  gap: 25px; 
}

.advantage-item-column { 
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 30px;
  display: flex; 
  align-items: center; 
  text-align: left; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%; 
}

.advantage-item-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-right: 25px; 
  min-width: 80px; 
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--light-accent);
  flex-shrink: 0; 
}

.advantage-text h4 {
  font-size: 1.5rem;
  margin-bottom: 8px; 
  color: var(--primary);
}

.advantage-text p {
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.6; 
}

@media (max-width: 767.98px) {
  .advantages-section {
    padding: 60px 0;
  }
  .advantage-item-column {
    flex-direction: column; 
    text-align: center;
    padding: 25px;
  }
  .advantage-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    margin-right: 0; 
    margin-bottom: 15px; 
  }
  .advantage-text h4 {
    font-size: 1.3rem;
  }
}
.site-header {
            background-color: var(--dark-bg);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .site-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
        }

        .nav-link {
            color: var(--light-text) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--accent-color) !important;
        }

        .hero-section {
            background-color: var(--white);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 45%;
            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: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--dark-text);
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: var(--text-color);
        }

        .hero-image-container {
            position: relative;
            z-index: 2;
        }

        .hero-image {
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            width: 100%;
        }

        .btn-accent {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 14px 35px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }

        .btn-accent:hover {
            background-color: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .lead {
            font-size: 1.1rem;
            color: var(--dark-text);
            opacity: 0.8;
        }

        .pricing-section {
            padding: 80px 0;
            background-color: var(--background-color);
        }

        .pricing-card {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 30px;
            transition: var(--transition);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .pricing-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .pricing-subtitle {
            color: var(--text-color);
            margin-bottom: 20px;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        .pricing-price span {
            font-size: 1rem;
            font-weight: 400;
        }

        .pricing-features {
            margin-bottom: 30px;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .pricing-feature-icon {
            color: var(--accent-color);
            margin-right: 10px;
        }

        .btn-outline-secondary {
            border: 2px solid var(--accent-color);
            color: var(--accent-color);
            background: transparent;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }

        .btn-outline-secondary:hover {
            background-color: var(--accent-color);
            color: white;
        }

        .cta-section {
            padding: 80px 0;
            background-color: var(--white);
        }

        .cta-card {
            background-color: var(--background-color);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .cta-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .cta-card-icon {
            width: 70px;
            height: 70px;
            background-color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 2rem;
        }

        .cta-card-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .cta-card-text {
            font-size: 1.1rem;
            color: var(--text-color);
            margin-bottom: 25px;
        }

        .testimonials-section {
            padding: 80px 0;
            background-color: var(--background-color);
        }

        .testimonial-intro {
            background-color: var(--white);
            border-radius: 12px;
            padding: 50px;
            margin-bottom: 50px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .testimonial-intro h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .testimonial-intro p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-color);
        }

        .testimonial-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .testimonial-author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid var(--accent-color);
        }

        .testimonial-author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-author-name {
            font-weight: 600;
            color: var(--primary);
        }

        .testimonial-rating {
            margin-bottom: 15px;
        }

        .rating-star {
            color: #FFD700;
            font-size: 1.2rem;
        }

        .testimonial-text {
            line-height: 1.8;
            color: var(--text-color);
        }

        .strengths-section {
            padding: 80px 0;
            background-color: var(--white);
        }

        .strength-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .strength-item {
            background-color: var(--background-color);
            border-radius: 10px;
            padding: 30px;
            display: flex;
            align-items: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .strength-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .strength-icon {
            width: 80px;
            height: 80px;
            min-width: 80px;
            background-color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            color: white;
            font-size: 2rem;
        }

        .strength-text h4 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .strength-text p {
            color: var(--text-color);
            line-height: 1.6;
        }

        .contact-section {
            padding: 80px 0;
            background-color: var(--background-color);
        }

        .form-container {
            background-color: var(--white);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow);
        }

        .form-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 30px;
            text-align: center;
        }

        .form-control {
            border: 1px solid var(--light-gray);
            padding: 15px;
            font-size: 1rem;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .form-control:focus {
            border-color: var(--accent-color);
            outline: none;
            box-shadow: 0 0 0 0.25rem rgba(121, 144, 228, 0.25);
        }

        .form-floating label {
            color: var(--text-color);
        }

        .btn-primary {
            background-color: var(--accent-color);
            border: none;
            padding: 15px 0;
            font-weight: 600;
            letter-spacing: 1px;
            width: 100%;
            border-radius: 8px;
            transition: var(--transition);
        }

        .btn-primary:hover {
            background-color: var(--accent-hover);
        }

        .footer {
            background-color: var(--dark-bg);
            color: var(--light-text);
            padding: 4rem 0 2rem;
        }

        .brand-link {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
        }

        .contact-email {
            color: var(--light-text);
            margin-top: 15px;
        }

        .footer_links {
            display: flex;
            flex-direction: column;
        }

        .footer .btn-link {
            color: var(--light-text);
            text-decoration: none;
            padding: 8px 0;
            text-align: left;
            transition: var(--transition);
        }

        .footer .btn-link:hover {
            color: var(--accent-color);
        }

        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .back-to-top {
            position: fixed;
            bottom: 45px;
            right: 45px;
            background-color: var(--accent-color);
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            z-index: 999;
        }

        .back-to-top:hover {
            background-color: var(--accent-hover);
        }

        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .strength-item {
                flex-direction: column;
                text-align: center;
            }
            
            .strength-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }