/********** Template CSS **********/
:root {
  --primary: #8e44ad; /* Deep Violet - strong and sophisticated */
  --secondary: #3498db; /* Clear Blue - calming and professional */
  --light: #f4f6f7; /* Very Light Gray - for clean backgrounds */
  --dark: #2c3e50; /* Dark Blue-Gray - for deep contrast text/elements */
  --bg-primary: #fdfefe; /* Off-white with a hint of warmth */
  --text-primary: #333d47; /* Slightly softer dark text */
  --accent-color: #f1c40f; /* Bright Yellow - for eye-catching highlights */
  --heading-color: #2c3e50; /* Consistent dark heading color */
  --border-radius: 0.5rem; /* Standard rounded corners */
  --shadow: 0 4px 15px rgba(142, 68, 173, 0.15); /* Shadow with violet tint */
  --bg-color: #ffffff; /* Pure white for main content areas */
  --text-color: #333d47; /* Standard text color */
  --white: #ffffff; /* White color */
}


/* Reset and base styles */
* {
  font-family: 'Crimson Text', serif;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Crimson Text', serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Text', serif;
  font-weight: 600;
  margin: 0;
}

.navbar-brand, .footer-brand {
  font-family: 'Crimson Text', serif;
  font-weight: 700;
}

/* Background colors */
.bg-dark {
  background-color: var(--dark) !important;
}

/* Utility classes */
.fw-medium {
  font-weight: 500 !important;
}

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

/* Form styles */
.error-message {
  color: var(--secondary);
  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: var(--secondary) !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
}

/* Back to top button */
.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 styles */
.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 styles */
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--secondary);
}

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

/* Footer styles */
.footer {
  background-color: var(--dark) !important;
  color: #ffffff;
  padding: 3rem 0 1rem;
  width: 100%;
  margin: 0;
}

.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: row;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.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;
  margin-left: 1rem;
}

.btn-link:hover {
  color: var(--secondary) !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: var(--secondary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Cookie banner */
.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0;
  left: 0;
  width: 100%;
  background: #f2f2f2;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;
}

.cookie-wrapper .show {
  right: 0;
}

.hidden {
  display: none;
}

header i {
  color: var(--primary);
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: var(--primary);
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: var(--primary);
  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 var(--primary);
  color: #fff;
  padding: 8px 0;
  background: var(--primary);
  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: var(--primary);
}

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

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

/* Hero section */
.hero-section {
  padding: 150px 0;
  background: linear-gradient(135deg, #fbffff 0%, #f1fff8 100%);
  width: 100%;
  margin: 0;
}

.hero-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  max-width: 600px;
}

.stats-card {
  background: var(--bg-primary);
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.stats-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stats-label {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1rem;
}

.btn-primary-custom {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 2rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* About section */
.about-section {
  padding: 120px 0;
  background-color: var(--light);
  width: 100%;
  margin: 0;
}

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

.about-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(145deg, var(--surface-color), var(--background-color));
  border: 1px solid var(--accent-color);
  border-radius: 1rem;
  padding: 0.5rem 1.5rem;
  margin: 0 0 0 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.feature-text {
  color: var(--default-color);
  font-size: 1.05rem;
  line-height: 1.5;
}

.feature-item:not(:last-child) {
  margin-bottom: 1rem;
}

/* Programs section */
.programs-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--light) 100%);
  width: 100%;
  margin: 0;
}

.programs-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.program-card {
  background: var(--white);
  border: 2px solid var(--light);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary));
}

.program-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(44, 85, 48, 0.15);
  transform: translateY(-5px);
}

.btn-small {
  padding: 4px 10px;
  text-transform: initial;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 10px;
}

.program-number {
  background-color: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.program-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.program-feature {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 0;
}

.program-feature-icon {
  color: var(--accent-color);
  margin-right: 0.75rem;
  margin-top: 0.1rem;
  font-size: 1.2rem;
}

.program-feature-text {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Advantages section */
.advantages-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light) 0%, #f5f5f5 100%);
  width: 100%;
  margin: 0;
}

.advantages-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.advantage-card {
  background: var(--bg-primary);
  border: none;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(78, 21, 4, 0.15);
}

.advantage-icon {
  color: var(--accent-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.advantage-title-item {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.3rem;
}

.advantage-text {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.advantages-image {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

/* Success section */
.success-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--light) 0%, #f8faf8 100%);
  width: 100%;
  margin: 0;
}

.success-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.success-subtitle {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.success-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
}

/* Success cards */
.success-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(44, 85, 48, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(44, 85, 48, 0.1);
}

.success-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(44, 85, 48, 0.15);
  border-color: var(--accent-color);
}

.success-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.success-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.success-info {
  flex: 1;
}

.success-name {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.success-position {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.success-content {
  flex: 1;
}

.success-text {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.success-rating {
  display: flex;
  gap: 0.25rem;
}

.success-rating .material-icons {
  color: #ffd700;
  font-size: 1.2rem;
}

/* Tips section */
.tips-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
  width: 100%;
  margin: 0;
}

.tips-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.tips-intro {
  font-size: 1.2rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tips-images {
  margin-bottom: 3rem;
}

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

.tip-item {
  background: var(--light);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--light);
  transition: all 0.3s ease;
  position: relative;
}

.tip-item:hover {
  background: #f5f5f5;
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.tip-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--accent-color);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.tip-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

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

/* Pricing section */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light) 0%, #f5f5f5 100%);
  width: 100%;
  margin: 0;
}

.pricing-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.pricing-card {
  background: var(--bg-primary);
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  text-align: center;
}

.pricing-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(78, 21, 4, 0.15);
  transform: translateY(-5px);
}

.pricing-card.featured {
  background: var(--accent-color);
  transform: scale(1.05);
  color: var(--light);
}

.plan-name {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.plan-period {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.plan-feature-text {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.plan-feature-icon {
  color: var(--accent-color);
  margin-right: 0.75rem;
  margin-top: 0.1rem;
  font-size: 1.2rem;
}

.pricing-note {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--text-primary);
  font-size: 1rem;
  font-style: italic;
}

/* Contact section */
.contact-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
  width: 100%;
  margin: 0;
}

.contact-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-description {
  font-size: 1.2rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-info {
  background: var(--light);
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-info:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
}

.email-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  padding: 1rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.email-link:hover {
  background: var(--heading-color);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.email-icon {
  margin-right: 0.5rem;
  font-size: 1.3rem;
}

.social-title {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.social-link:hover {
  background: var(--heading-color);
  color: white;
  transform: translateY(-3px) scale(1.1);
}

/* Form section */
.form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light) 0%, #f5f5f5 100%);
  width: 100%;
  margin: 0;
}

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

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

/* Swiper styles */
.success-swiper {
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
  margin: 0;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  opacity: 0.7;
  transform: scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(10%) brightness(0.95);
  pointer-events: none;
  height: auto;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
  pointer-events: auto;
}

.swiper-slide-prev,
.swiper-slide-next {
  opacity: 0.8;
  transform: scale(0.98);
  filter: grayscale(5%) brightness(0.98);
}

/* Hide navigation buttons */
.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

/* Enhanced pagination styles */
.swiper-pagination {
  position: relative;
  margin-top: 30px;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(44, 85, 48, 0.3);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 6px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  transform: scale(1);
}

.swiper-pagination-bullet:hover {
  background: rgba(44, 85, 48, 0.6);
  transform: scale(1.2);
}

.swiper-pagination-bullet-active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(74, 124, 89, 0.4);
}

.swiper-pagination-bullet-active-main {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(74, 124, 89, 0.4);
}

/* Responsive styles */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .about-title, .programs-title, .advantages-title, .success-title, .tips-title, .pricing-title, .contact-title, .form-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
  .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
  .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
  .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Section adjustments */
  .hero-section,
  .about-section,
  .success-section,
  .tips-section,
  .programs-section,
  .advantages-section,
  .pricing-section,
  .contact-section,
  .form-section {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Content adjustments */
  main {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .additional-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Footer adjustments */
  .footer {
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Navbar adjustments */
  .navbar {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Content wrapper adjustments */
  .content {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .wrapper-1,
  .wrapper-2 {
    width: 100%;
    margin: 0;
    padding: 15px;
  }
  
  /* Typography adjustments */
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-section {
    padding: 100px 0;
  }
  
  .stats-card {
    margin-bottom: 1.5rem;
  }
  
  .about-title, .programs-title {
    font-size: 2rem;
  }
  
  .about-image {
    height: 300px;
    margin-bottom: 2rem;
    border-radius: 20px;
  }
  
  .program-card {
    padding: 2rem;
  }
  
  .advantages-title, .success-title {
    font-size: 2rem;
  }
  
  .success-subtitle {
    font-size: 1rem;
  }
  
  .success-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .advantage-card {
    padding: 1.5rem;
  }
  
  .advantages-image {
    height: 200px;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .tips-title, .pricing-title {
    font-size: 2rem;
  }
  
  .tips-image {
    height: 250px;
    margin-bottom: 1rem;
  }
  
  .tip-item {
    padding: 1.5rem;
  }
  
  .pricing-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .plan-price {
    font-size: 2rem;
  }
  
  .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;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-brand {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    margin-bottom: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .btn-link {
    margin-left: 0;
  }
  
  .cookie-wrapper {
    padding: 15px 20px 20px;
  }
  
  /* Pagination adjustments for mobile */
  .swiper-pagination {
    margin-top: 20px;
  }
  
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
  
  .success-swiper {
    width: 95%;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
  .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
  .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
  .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-section {
    padding: 80px 0;
  }
  
  .about-title, .programs-title, .advantages-title, .success-title, .tips-title, .pricing-title, .contact-title, .form-title {
    font-size: 1.8rem;
  }
  
  .success-subtitle {
    font-size: 0.9rem;
  }
  
  .success-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .success-card {
    padding: 1.5rem;
  }
  
  .success-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .success-name {
    font-size: 1.1rem;
  }
  
  .success-text {
    font-size: 0.9rem;
  }
  
  .about-image {
    height: 250px;
  }
  
  .advantages-image {
    height: 180px;
  }
  
  .tips-image {
    height: 200px;
  }
  
  .form-container {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .program-card,
  .advantage-card,
  .testimonial-card,
  .tip-item,
  .pricing-card {
    padding: 1.5rem;
  }
  
  .footer-brand {
    font-size: 1.3rem;
  }
  
  .btn-link {
    font-size: 0.9rem;
  }
  
  .cookie-wrapper {
    padding: 10px 15px 15px;
  }
  
  .buttons .cookie-button {
    width: 100%;
    max-width: none;
    margin-bottom: 10px;
  }
  
  /* Pagination adjustments for small screens */
  .swiper-pagination {
    margin-top: 15px;
  }
  
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
  
  .success-swiper {
    width: 100%;
  }
}
