:root {
  /* Цветовая схема: Раздельно-дополнительная */
  --primary-color: #3a7bd5;
  --primary-dark: #2a5ba8;
  --primary-light: #5d9eff;
  --secondary-color: #f4983f;
  --secondary-dark: #d87b25;
  --secondary-light: #ffb56e;
  --accent-color: #e74c3c;
  --accent-dark: #c0392b;
  --accent-light: #ff6b5b;
  
  /* Нейтральные цвета */
  --dark: #222222;
  --medium-dark: #444444;
  --medium: #777777;
  --medium-light: #aaaaaa;
  --light: #f8f9fa;
  --white: #ffffff;
  
  /* Цвета фона */
  --bg-primary: #f8f9fb;
  --bg-secondary: #f0f4f8;
  --bg-accent: #e8f0fe;
  
  /* Размеры */
  --header-height: 80px;
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Тени */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  
  /* Анимации */
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Базовые стили */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--dark);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

p {
  color: var(--medium-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  position: relative;
  padding: 80px 0;
}

/* Биоморфный дизайн - общие элементы */
.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 0 auto 30px;
  border-radius: 50px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
}

.section-description {
  font-size: 1.2rem;
  color: var(--medium);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Биоморфные формы */
.bio-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(58, 123, 213, 0.1), rgba(244, 152, 63, 0.05));
  z-index: -1;
}

.bio-shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}

.bio-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
}

/* Заголовки */
h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
}

/* Кнопки */
.btn {
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-transform: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-outline-secondary:hover, .btn-outline-secondary:focus {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-light:hover, .btn-outline-light:focus {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.1rem;
}

/* Header */
.header-section {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  padding: 0;
  transition: var(--transition);
  z-index: 1000;
}

.header-section.scrolled {
  padding: 5px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.navbar-nav .nav-link {
  color: var(--medium-dark);
  font-weight: 500;
  padding: 10px 16px;
  position: relative;
  transition: var(--transition-fast);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

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

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0 80px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease forwards;
}

.hero-section .lead {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-section .btn {
  animation: fadeInUp 1.4s ease forwards;
}

/* Mission Section */
.mission-section {
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.mission-image-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.mission-image-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mission-content h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 2px;
  height: calc(100% - 40px);
  background: linear-gradient(to bottom, var(--primary-light), var(--secondary-light));
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-marker {
  position: absolute;
  left: -30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: var(--shadow-sm);
}

.timeline-content {
  padding-left: 15px;
}

.timeline-content h5 {
  color: var(--primary-dark);
  margin-bottom: 5px;
}

/* Webinars Section */
.webinars-section {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.webinar-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.webinar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.webinar-card .card-image {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.webinar-card .card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

.webinar-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 10px 15px;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow);
}

.webinar-date span {
  font-size: 0.85rem;
}

.webinar-card .card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.webinar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.webinar-details {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.webinar-duration, .webinar-level {
  display: flex;
  align-items: center;
  color: var(--medium);
  font-size: 0.9rem;
}

.webinar-duration i, .webinar-level i {
  margin-right: 5px;
  color: var(--primary-color);
}

/* Resources Section */
.resources-section {
  background-color: var(--bg-primary);
}

.resource-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.resource-content {
  padding: 30px;
}

.resource-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.resource-card h3 a {
  color: var(--primary-dark);
  transition: var(--transition-fast);
}

.resource-card h3 a:hover {
  color: var(--primary-color);
}

.resource-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  transition: var(--transition-fast);
}

.resource-link i {
  margin-left: 5px;
  transition: var(--transition-fast);
}

.resource-link:hover {
  color: var(--primary-dark);
}

.resource-link:hover i {
  transform: translateX(5px);
}

/* Awards Section */
.awards-section {
  background-color: var(--bg-accent);
  position: relative;
  overflow: hidden;
}

.award-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.award-card .card-image {
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.award-card .card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.award-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.award-date {
  margin-top: auto;
  color: var(--medium);
  font-size: 0.9rem;
  font-style: italic;
}

.awards-progress {
  margin-top: 50px;
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.progress-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.progress-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.progress-label {
  width: 200px;
  font-weight: 600;
  color: var(--dark);
}

.progress {
  flex: 1;
  height: 10px;
  background-color: var(--bg-secondary);
  border-radius: 50px;
  overflow: hidden;
  margin: 0 20px;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 50px;
  transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.progress-value {
  width: 70px;
  text-align: right;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Blog Section */
.blog-section {
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.blog-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card .card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 5px 15px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.blog-card .card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  color: var(--medium);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  transition: var(--transition-fast);
}

.blog-link i {
  margin-left: 5px;
  transition: var(--transition-fast);
}

.blog-link:hover {
  color: var(--primary-dark);
}

.blog-link:hover i {
  transform: translateX(5px);
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--bg-secondary);
  color: var(--medium);
  font-size: 0.85rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.contact-info {
  height: 100%;
}

.contact-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.contact-item p {
  margin-bottom: 0;
  color: var(--medium-dark);
}

.contact-form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-form-container h3 {
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.form-control, .form-select {
  padding: 12px 15px;
  border-radius: var(--border-radius);
  border: 1px solid var(--medium-light);
  background-color: var(--bg-primary);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.15);
  border-color: var(--primary-color);
}

.form-label {
  font-weight: 500;
  color: var(--medium-dark);
  margin-bottom: 8px;
}

.form-check-label {
  color: var(--medium-dark);
  font-size: 0.9rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
.footer-section {
  background-color: var(--dark);
  color: var(--light);
  padding: 80px 0 40px;
}

.footer-section h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.footer-section p {
  color: var(--medium-light);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: var(--white);
  font-weight: 500;
  transition: var(--transition-fast);
}

.social-links a:hover {
  color: var(--secondary-light);
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--medium-light);
  transition: var(--transition-fast);
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-light);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 20px;
}

.footer-links a:hover::before {
  color: var(--secondary-light);
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-light);
}

.newsletter-form .btn {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border: none;
}

.newsletter-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--medium-light);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--medium-light);
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Modal */
.modal-content {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-bottom: none;
  padding: 20px 30px;
}

.modal-title {
  font-weight: 600;
}

.modal-body {
  padding: 30px;
}

.modal .btn-close {
  color: var(--white);
  opacity: 0.8;
  transition: var(--transition-fast);
}

.modal .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Cookie Consent Popup */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.95);
  color: var(--white);
  z-index: 9999;
  padding: 15px 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-content p {
  margin: 0;
  color: var(--medium-light);
  padding-right: 20px;
}

.cookie-content a {
  color: var(--secondary-light);
}

.cookie-content .btn {
  white-space: nowrap;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
}

.success-container {
  text-align: center;
  padding: 50px;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 30px;
}

.success-title {
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.success-message {
  color: var(--medium-dark);
  margin-bottom: 30px;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 120px;
  padding-bottom: 80px;
}

.page-content h1 {
  margin-bottom: 30px;
  color: var(--primary-dark);
}

.page-content h2 {
  color: var(--primary-dark);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.page-content p {
  margin-bottom: 20px;
}

.page-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-content ul li {
  margin-bottom: 10px;
  color: var(--medium-dark);
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Media Queries */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin-top: 15px;
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 20px;
    border-radius: var(--border-radius);
  }
  
  .navbar-nav .nav-link:hover {
    background-color: var(--bg-accent);
  }
  
  .timeline-content {
    padding-left: 0;
  }
  
  .progress-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .progress-label {
    width: 100%;
  }
  
  .progress {
    width: 100%;
    margin: 0;
  }
  
  .progress-value {
    width: 100%;
    text-align: left;
    margin-top: 5px;
  }
  
  .contact-form-container {
    margin-top: 40px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-bottom: 15px;
    padding-right: 0;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .hero-section {
    min-height: auto;
    padding: 120px 0 80px;
  }
  
  .contact-item {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .footer-section {
    padding: 60px 0 30px;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom .text-md-end {
    text-align: center !important;
    margin-top: 10px;
  }
}

@media (max-width: 575.98px) {
  .btn-lg {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .contact-form-container {
    padding: 25px;
  }
  
  .webinar-date {
    padding: 8px 12px;
  }
  
  .webinar-card .card-content {
    padding: 20px;
  }
  
  .award-card .card-content {
    padding: 20px;
  }
  
  .blog-card .card-content {
    padding: 20px;
  }
  
  .blog-meta {
    flex-direction: column;
    gap: 10px;
  }
}
html,body{
  overflow-x: hidden;
}