﻿:root {
  --primary: #70082b; 
  --secondary: #fffaf4; 
  --accent: #3ab0ff; 
  --accent-hover: #c72826; 
  --dark: #70082b; 
  --auxiliary: #ffc6f4;
  --light-text: #fffaf4; 
  --dark-text: #70082b; 
  --white: #FFFFFF; 
  --light-gray: #ffc6f4; 
  --background-color: #fffaf4; 
  --text-color: var(--dark-text); 
  --accent-color: var(--accent); 
  --light-accent: rgba(58, 176, 255, 0.15); 
  --light-bg: #fffaf4;
  --dark-bg: #70082b;
  --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(--light-text); 
  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(--light-text); 
}

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


.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: var(--dark-bg)!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)!important; 
}

.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(--white); 
    color: var(--dark-text);
    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;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-text)!important; 
}

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

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

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    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 {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}



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

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

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

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

.advantage-item-column {
    background-color: var(--white); 
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    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 {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    min-width: 80px;
    background-color: var(--light-accent); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color); 
    font-size: 3.5rem;
    margin-right: 25px;
}

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

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


.pricing-section {
    background-color: var(--white);
    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%; 
    border: 1px solid var(--light-gray);
}

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

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

.pricing-card.featured:hover {
    transform: translateY(-10px);
}

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

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

.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 {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: left; 
}

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

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

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

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



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

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

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

.cta-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    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);
}


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

.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: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.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-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;
    display: flex;
}

.rating-star {
    color: var(--accent-color); 
    font-size: 1.2rem;
    margin-right: 3px;
}

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



.contact-section {
    background-color: var(--white);
    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(--primary); 
    margin-bottom: 30px;
    text-align: center;
}

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

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

.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(--dark-text); 
    opacity: 0.7;
}

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


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

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

.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 .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);
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
  padding: 8px 0;
  margin: 0;
  border: none;
  text-decoration: none;
}

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

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

.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(--primary); 
    margin-bottom: 20px;
}

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

.strength-card {
    background-color: var(--white); 
    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(--white); 
    flex-shrink: 0;
}

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

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

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

.strength-item {
    background-color: var(--light-bg);
    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-item .strength-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin-right: 25px;
    font-size: 2rem;
}

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

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


@media (max-width: 991.98px) {
    .strength-card {
        padding: 25px;
    }
    .strength-title {
        font-size: 1.6rem;
    }
    .strength-item {
        flex-direction: column;
        text-align: center;
    }
    .strength-item .strength-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

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

.cookie-wrapper {
  background-color: var(--white); 
  color: var(--dark-text);
  border: 1px solid var(--accent-color); 
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 40%;
  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;
}

.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(--accent-color); 
    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(--accent-color);
  color: var(--white);
  padding: 10px 15px;
  background: var(--accent-color);
  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(--accent-color);
}

#declineBtn {
  background-color: var(--light-gray);
  color: var(--dark-text);
  border-color: var(--light-gray);
}

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

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
    border-radius: 0;
  }
}


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

.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; 
  text-decoration: none;
  display: inline-block;
}

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

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

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

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


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

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

.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) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-section,
  .programs-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-card {
    margin-bottom: 30px;
  }

  .program-card {
    margin-bottom: 30px;
  }
  
  .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-image-container {
    margin-top: 3rem;
    padding-left: 0;
  }
}

@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;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-section {
    padding: 160px 0 80px 0; 
  }
}
 .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;
          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;
        }

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

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

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

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

        .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: var(--accent-color);
          font-size: 1.2rem;
        }

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

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

        .strength-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
          margin-top: 50px;
        }

        .strength-box {
          background-color: var(--light-bg);
          padding: 40px 30px;
          border-radius: 12px;
          box-shadow: var(--shadow);
          transition: var(--transition);
          text-align: center;
        }

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

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

        .strength-box h4 {
          font-size: 1.4rem;
          color: var(--primary);
          margin-bottom: 15px;
        }

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

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

        .pricing-wrapper {
          display: flex;
          gap: 30px;
          margin-top: 50px;
        }

        .pricing-card {
          flex: 1;
          background-color: var(--white);
          border-radius: 12px;
          box-shadow: var(--shadow);
          padding: 40px;
          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;
          padding-bottom: 20px;
          border-bottom: 2px solid var(--light-gray);
        }

        .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: flex-start;
          margin-bottom: 15px;
        }

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

        .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;
          width: 100%;
          text-align: center;
        }

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

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

        .ways-list {
          display: flex;
          flex-direction: column;
          gap: 40px;
          margin-top: 50px;
        }

        .way-item {
          display: flex;
          align-items: center;
          gap: 30px;
          background-color: var(--light-bg);
          padding: 30px;
          border-radius: 12px;
          box-shadow: var(--shadow);
          transition: var(--transition);
        }

        .way-item:hover {
          transform: translateX(10px);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .way-number {
          width: 80px;
          height: 80px;
          min-width: 80px;
          background-color: var(--accent-color);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 2rem;
          font-weight: 700;
          color: white;
        }

        .way-content h3 {
          font-size: 1.8rem;
          color: var(--primary);
          margin-bottom: 10px;
        }

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

        .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(58, 176, 255, 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;
          text-decoration: none;
        }

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

        @media (max-width: 991px) {
          .hero-title { font-size: 2.5rem; }
          .pricing-wrapper { flex-direction: column; }
          .way-item { flex-direction: column; text-align: center; }
          .way-item:hover { transform: translateY(-5px); }
        }