
/* General Styles */
:root {
  --primary-color: #241a3b;
  --secondary-color: #ff35e8;
  --accent-color: #9526ff;
  --light-bg: #f8f9fa;
  --dark-bg: #241a3b;
  --gradient-primary: linear-gradient(135deg, #241a3b 0%, #552d61 100%);
  --gradient-accent: linear-gradient(135deg, #ff35e8 0%, #9526ff 100%);
  --text-light: #ffffff;
  --text-dark: #333333;
  --card-shadow: 0 10px 30px rgba(26, 27, 59, 0.1);
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.learning-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.learning-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Header Styles */
.navbar {
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 20px rgba(26, 27, 59, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

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

/* Hero Section */
.hero-section {
  background: var(--gradient-primary);
  min-height: 110vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}


.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInLeft 1s ease-out;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-features {
  margin-bottom: 2rem;
}

.feature-item {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

.feature-item i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.hero-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-trial {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-weight: 600;
  animation: fadeInUp 1s ease-out 1s both;
}

.btn-primary-custom {
  background: var(--gradient-accent);
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  color: var(--text-light);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  animation: fadeInUp 1s ease-out 1.2s both;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: var(--text-light);
}

.hero-image {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

/* Footer */
.footer-section {
  background: var(--dark-bg);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.footer-section > * {
  position: relative;
  z-index: 2;
}

.footer-section h5 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section h5::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-info p {
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-info p:hover {
  transform: translateX(5px);
}

.contact-info i {
  color: var(--accent-color);
  margin-right: 10px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -5px 20px rgba(26, 27, 59, 0.3);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content p {
  color: var(--text-light);
  margin: 0;
}

.cookie-content a {
  color: var(--accent-color);
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

/* Content Styles for Legal Pages */
.content h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-bg);
}

.content h3 {
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
}

.content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content ul {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.content li {
  margin-bottom: 0.5rem;
}

.content a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.content a:hover {
  text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }

  .hero-features {
    margin-bottom: 1.5rem;
  }
  .hero-price {
    font-size: 2rem;
  }
  
  .hero-trial {
    font-size: 1.2rem;
  }
  
  .btn-primary-custom {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cookie-popup {
    padding: 15px 0;
  }
  
  .hero-image {
    margin-top: 2rem;
    max-height: 200px;
  }
}


/* new styles  */
/* Стили для блока "Как построить бизнес с нуля" */
.business-steps {
  background-color: var(--light-bg);
  overflow: hidden;
  position: relative;
}

.business-steps .section-title {
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}



.business-steps .step-number {
  font-size: 8rem;
  font-weight: 800;
  color: rgba(149, 38, 255, 0.1);
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.business-steps .step-card {
  background: #ffffff;
  border-radius: 20px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.business-steps .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(26, 27, 59, 0.15);
}

.business-steps .step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-accent);
}

.business-steps .step-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.business-steps .step-description {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.business-steps .step-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .business-steps .step-number {
    font-size: 5rem;
  }
  
  .business-steps .step-card {
    margin-bottom: 2rem;
  }
}

/* Стили для блока "Как построить бизнес с нуля" */
.business-steps {
  background-color: var(--light-bg);
  overflow: hidden;
  position: relative;
}

.business-steps .section-title {
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}


.business-steps .step-number {
  font-size: 8rem;
  font-weight: 800;
  color: rgba(149, 38, 255, 0.1);
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.business-steps .step-card {
  background: #ffffff;
  border-radius: 20px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.business-steps .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(26, 27, 59, 0.15);
}

.business-steps .step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-accent);
}

.business-steps .step-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.business-steps .step-description {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.business-steps .step-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Стили для блока "Курсы повышения квалификации для сотрудников" */
.courses-section {
  background-color: #ffffff;
}

.courses-section .section-title {
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.course-card {
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--card-shadow);
  height: 100%;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(26, 27, 59, 0.15);
}

.course-img-container {
  height: 340px;
  overflow: hidden;
  position: relative;
}

.course-img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease;
}

.course-card:hover .course-img {
  transform: scale(1.05);
}

.course-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.course-content {
  padding: 2rem;
}

.course-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.course-description {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.btn-accent {
  background: var(--gradient-accent);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(149, 38, 255, 0.2);
  color: white;
}

/* Стили для блока "Дизайн интерьера под концепцию заведения" */
.interior-design {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.interior-design-content {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
}

.interior-design .section-title {
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}


.interior-design-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.interior-design-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
}

.interior-design-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-accent);
}

@media (max-width: 768px) {
  .business-steps .step-number {
    font-size: 5rem;
  }
  
  .business-steps .step-card {
    margin-bottom: 2rem;
  }
  
  .course-img-container {
    height: 200px;
  }
  
  .interior-design-content {
    padding: 2rem;
  }
}
/* Стили для блока "Современные тренды в гостиничном и ресторанном бизнесе" */
.accent-line {
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
  margin-bottom: 2rem;
}

.trend-item {
  position: relative;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
  height: 100%;
}

.trend-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(26, 27, 59, 0.15);
}

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

/* Стили для блока "Примеры успешных кейсов в Казахстане" */
.case-card {
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--card-shadow);
  height: 100%;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(26, 27, 59, 0.15);
}

.case-img-container {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.case-img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease;
}

.case-card:hover .case-img {
  transform: scale(1.05);
}

.case-location {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Стили для блока "История и миссия" */
.mission-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-accent);
}

.mission-highlight {
  color: var(--accent-color);
  font-weight: 700;
}

@media (max-width: 768px) {
  .trend-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .case-img-container {
    height: 200px;
  }
  
  .mission-card {
    padding: 2rem;
  }
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark-bg);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Стилі для блоку трендів */
.trends-section {
  padding: 6rem 0;
  background-color: var(--light-bg);
}

.trend-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  box-shadow: var(--card-shadow);
}

.trend-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(26, 27, 59, 0.15);
}

.trend-card-header {
  padding: 1.5rem;
  position: relative;
}

.trend-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-accent);
}

.trend-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(149, 38, 255, 0.1);
  margin-bottom: 1rem;
}

.trend-icon i {
  color: var(--accent-color);
  font-size: 28px;
}

.trend-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.trend-content {
  padding: 0 1.5rem 1.5rem;
  color: #555;
}

.trends-background-shape {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.05;
  z-index: 0;
}

@media (max-width: 992px) {
  .trend-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .trend-title {
    font-size: 1.3rem;
  }
}

/* Стилі для блоку успішних кейсів */
.cases-section {
  padding: 6rem 0;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.cases-section .section-title,
.cases-section .section-subtitle {
  color: var(--text-light);
}

.case-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.case-img-container {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-img {
  transform: scale(1.05);
}

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(36, 26, 59, 0.1), rgba(36, 26, 59, 0.8));
}

.case-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

.case-content {
  padding: 2rem;
  position: relative;
}

.case-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.case-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.case-bg-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.05;
  z-index: 0;
}

.shape-1 {
  top: -150px;
  left: -150px;
}

.shape-2 {
  bottom: -150px;
  right: -150px;
}

/* Стилі для блоку історії та місії */
.mission-section {
  padding: 6rem 0;
  background-color: var(--light-bg);
  position: relative;
}

.mission-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.mission-content {
  background-color: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 2;
}

.mission-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark-bg);
  position: relative;
  display: inline-block;
}

.mission-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.mission-text {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-text:last-child {
  margin-bottom: 0;
}

.mission-accent {
  color: var(--accent-color);
  font-weight: 600;
}

.mission-bg-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.mission-shape-1 {
  top: -40px;
  right: -40px;
  background: var(--gradient-accent);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.mission-shape-2 {
  bottom: -40px;
  left: -40px;
  border: 3px solid var(--accent-color);
  opacity: 0.1;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@media (max-width: 992px) {
  .case-card {
    margin-bottom: 2rem;
  }
  
  .mission-content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .mission-title {
    font-size: 1.8rem;
  }
  
  .case-img-container {
    height: 200px;
  }
  
  .case-content {
    padding: 1.5rem;
  }
}
/* Стилі для блоку команди експертів */
.team-section {
  padding: 6rem 0;
  background-color: var(--light-bg);
  position: relative;
}

.team-container {
  position: relative;
}

.team-content {
  margin-bottom: 3rem;
}

.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark-bg);
}

.team-text {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.team-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  margin: 3rem 0;
}

.team-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-image:hover {
  transform: scale(1.03);
}

.team-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 2rem;
}

.team-list-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #555;
}

.team-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
}

.team-highlight {
  font-weight: 600;
  color: var(--dark-bg);
}

/* Стилі для блоку курсів */
.courses-section {
  padding: 6rem 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.courses-section .section-title,
.courses-section .section-subtitle {
  color: var(--text-light);
}

.course-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}


.course-card:hover .course-img {
  transform: scale(1.05);
}

.course-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

.course-content {
  padding: 2rem;
}

.course-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-bg);
  position: relative;
  padding-bottom: 0.8rem;
}

.course-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 1.5px;
}

.course-text {
  color: #555;
  margin-bottom: 1.5rem;
}

.course-bg-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  z-index: 0;
}

.course-shape-1 {
  top: -200px;
  right: -200px;
}

.course-shape-2 {
  bottom: -200px;
  left: -200px;
}

/* Стилі для блоку програми навчання */
.program-section {
  padding: 5rem 0;
  background-color: var(--light-bg);
}

.program-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark-bg);
  text-align: center;
}

.program-text {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.program-modules {
  background-color: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.program-list {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
}

.program-list-item {
  flex: 1 0 45%;
  position: relative;
  padding: 1.5rem;
  background-color: var(--light-bg);
  border-radius: 12px;
  font-size: 1.1rem;
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.program-list-item:hover {
  transform: translateY(-5px);
}

.program-list-item i {
  margin-right: 1rem;
  color: var(--accent-color);
  font-size: 1.5rem;
}

/* Стилі для блоку формату навчання */
.format-section {
  padding: 5rem 0;
  background-color: white;
  position: relative;
}

.format-container {
  background: var(--gradient-primary);
  border-radius: 16px;
  padding: 3.5rem;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.format-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.format-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 1.5px;
}

.format-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.format-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  margin-right: 1rem;
}

.format-icon i {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.format-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.format-feature-text {
  font-size: 1.1rem;
}

.format-bg-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  z-index: 1;
  opacity: 0.1;
}

.format-shape-1 {
  top: -150px;
  right: -150px;
  background: var(--secondary-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.format-shape-2 {
  bottom: -150px;
  left: -150px;
  background: var(--accent-color);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@media (max-width: 992px) {
  .course-card {
    margin-bottom: 2rem;
  }
  
  .program-list-item {
    flex: 1 0 100%;
  }
  
  .format-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .team-title,
  .format-title,
  .program-title {
    font-size: 1.8rem;
  }
  
  .team-image-container {
    margin: 2rem 0;
  }
  
  .format-feature {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .format-icon {
    margin-bottom: 1rem;
  }
}

/* Стилі для блоку переваг */
.advantages-section {
  padding: 6rem 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.advantages-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

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

.advantages-text {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

.advantages-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(149, 38, 255, 0.1);
}

.advantages-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 2.5rem;
}

.advantages-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.advantages-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.advantages-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.advantages-icon i {
  color: white;
  font-size: 24px;
}

.advantages-item-content {
  flex: 1;
}

.advantages-item-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-bg);
}

.advantages-bg-shape {
  position: absolute;
  z-index: 1;
}

.adv-shape-1 {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--gradient-accent);
  opacity: 0.05;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.adv-shape-2 {
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: var(--gradient-primary);
  opacity: 0.05;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* Стилі для блоку трендів та обучения персонала */
.article-section {
  padding: 6rem 0;
  background-color: var(--light-bg);
}

.article-container {
  max-width: 1000px;
  margin: 0 auto;
}

.article-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 4rem;
  transition: transform 0.3s ease;
}

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

.article-content {
  padding: 3rem;
}

.article-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-bg);
  position: relative;
  padding-bottom: 1rem;
}

.article-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 1.5px;
}

.article-text {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-text:last-child {
  margin-bottom: 0;
}

.article-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.article-highlight {
  font-weight: 600;
  color: var(--dark-bg);
}

.article-paragraph {
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .advantages-card {
    padding: 2rem;
  }
  
  .article-content {
    padding: 2rem;
  }
  
  .article-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .advantages-title,
  .article-title {
    font-size: 1.8rem;
  }
  
  .advantages-item {
    flex-direction: column;
  }
  
  .advantages-icon {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  
  .article-image {
    height: 200px;
  }
}
/* Стилі для блоку порад */
.tips-section {
  padding: 6rem 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.tips-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tip-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.tip-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.tip-icon i {
  color: white;
  font-size: 28px;
}

.tip-content {
  flex: 1;
}

.tip-highlight {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.tip-text {
  color: #555;
  line-height: 1.6;
}

.tips-bg-shape {
  position: absolute;
  opacity: 0.05;
  z-index: 1;
}

.tips-shape-1 {
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: var(--secondary-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.tips-shape-2 {
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@media (max-width: 992px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .tip-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .tips-title {
    font-size: 1.8rem;
  }
  
  .tip-card {
    padding: 1.5rem;
  }
  
  .tip-icon {
    width: 50px;
    height: 50px;
  }
  
  .tip-icon i {
    font-size: 24px;
  }
}

/* Стилі для блоку послуг */
.services-section {
  padding: 0;
  position: relative;
  background-color: var(--dark-bg);
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./img/services_bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(36, 26, 59, 0.95) 0%, rgba(36, 26, 59, 0.8) 100%);
  z-index: 2;
}

.services-container {
  position: relative;
  z-index: 3;
  padding: 6rem 0;
}

.services-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  text-align: center;
}

.services-intro {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-align: center;
}

.services-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.service-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.service-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.service-icon i {
  color: white;
  font-size: 24px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin: 0;
  padding-top: 0.5rem;
}

.service-text {
  color: rgba(255, 255, 255, 0.8);
  margin-left: calc(50px + 1.5rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-title {
    font-size: 2rem;
  }
  
  .services-intro {
    font-size: 1.1rem;
  }
  
  .service-item {
    padding: 1.5rem;
  }
  
  .service-header {
    flex-direction: column;
  }
  
  .service-icon {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  
  .service-title {
    padding-top: 0;
  }
  
  .service-text {
    margin-left: 0;
  }
}
/* Стилі для блоку контактів */
.contact-section {
  padding: 6rem 0;
  background-color: var(--light-bg);
  position: relative;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-row {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.contact-image-col {
  flex: 1;
  height: 100%;
  min-height: 400px;
  position: relative;
  display: none;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-content-col {
  flex: 1;
  padding: 3rem;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-bg);
  position: relative;
  padding-bottom: 1rem;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 1.5px;
}

.contact-text {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-info-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-bg);
}

.contact-info-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 20px;
}

.contact-info-content {
  flex: 1;
}

.contact-info-label {
  font-weight: 600;
  color: var(--dark-bg);
  margin-bottom: 0.2rem;
}

.contact-info-value {
  color: #555;
}

.contact-info-value a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-value a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.contact-note {
  color: #777;
  font-style: italic;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .contact-image-col {
    display: block;
  }
}

@media (max-width: 768px) {
  .contact-content-col {
    padding: 2rem;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
  
  .contact-text {
    font-size: 1rem;
  }
}