:root {
  /* Пастельная цветовая схема */
  --primary-color: #6a9ed3;
  --primary-dark: #4f7eac;
  --secondary-color: #d3a5cf;
  --secondary-dark: #b68cb2;
  --accent-color: #ffd166;
  --accent-dark: #e6b94d;
  --success-color: #a8dadc;
  --error-color: #f28482;
  --background-light: #f9f9fb;
  --background-dark: #e7e7ef;
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #ffffff;
  --shadow-soft: 0 4px 20px rgba(106, 158, 211, 0.15);
  --shadow-medium: 0 8px 30px rgba(106, 158, 211, 0.2);
  --shadow-hard: 0 12px 40px rgba(106, 158, 211, 0.3);
  --border-radius-small: 8px;
  --border-radius-medium: 16px;
  --border-radius-large: 24px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

/* ===== Base Styles ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-small);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  font-family: 'Nunito', sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-soft);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all var(--transition-medium);
  z-index: -1;
}

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

button, input[type='submit'] {
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}

/* ===== Header & Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(249, 249, 251, 0.95);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(249, 249, 251, 0.98);
  box-shadow: var(--shadow-medium);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

.logo span {
  color: var(--primary-color);
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  margin-left: 2rem;
}

.nav-list a {
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.nav-list a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  margin: 5px 0;
  border-radius: 3px;
  transition: all var(--transition-medium);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
  padding-top: 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-medium);
  animation: fadeIn 1s ease-out;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* ===== Services Section ===== */
.services {
  background-color: var(--background-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.card {
  background-color: #fff;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

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

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

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card-content p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

/* ===== Statistics Section ===== */
.statistics {
  background-color: var(--background-dark);
  position: relative;
  overflow: hidden;
}

.statistics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(106, 158, 211, 0.1), rgba(211, 165, 207, 0.1));
  z-index: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-medium);
  font-weight: 600;
}

.stats-details {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Insights Section ===== */
.insights {
  background-color: var(--background-light);
}

.insights-wrapper {
  position: relative;
  z-index: 1;
}

.insights-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.insights-text {
  flex: 1;
  min-width: 300px;
}

.insights-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.insights-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

/* ===== External Resources Section ===== */
.external-resources {
  background-color: var(--background-dark);
  position: relative;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.resource-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.resource-card h3 {
  margin-bottom: 1rem;
}

.resource-card a {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.resource-card a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.resource-card a:hover::after {
  width: 100%;
}

.resource-card p {
  color: var(--text-medium);
  margin-top: auto;
}

/* ===== Sustainability Section ===== */
.sustainability {
  background-color: var(--background-light);
}

.sustainability-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.sustainability-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.sustainability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.sustainability-text {
  flex: 1;
  min-width: 300px;
}

/* ===== Innovation Section ===== */
.innovation {
  background-color: var(--background-dark);
  position: relative;
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.innovation-card {
  background-color: #fff;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.innovation-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

/* ===== Webinars Section ===== */
.webinars {
  background-color: var(--background-light);
}

.webinars-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.webinars-text {
  flex: 1;
  min-width: 300px;
}

.webinars-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.webinars-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.webinar-schedule {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-soft);
}

.webinar-schedule h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.schedule-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.schedule-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.schedule-date {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-small);
  font-weight: 600;
  min-width: 100px;
  text-align: center;
}

.schedule-info h4 {
  margin-bottom: 0.5rem;
}

/* ===== FAQ Section ===== */
.faq {
  background-color: var(--background-dark);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.25rem;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: transform var(--transition-medium);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.faq-answer p {
  padding-bottom: 1.5rem;
}

/* ===== Awards Section ===== */
.awards {
  background-color: var(--background-light);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.award-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.award-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary-color);
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* ===== Partners Section ===== */
.partners {
  background-color: var(--background-dark);
  position: relative;
}

.partners-content {
  text-align: center;
}

.partners-content p {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.partner-logo {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: var(--border-radius-small);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  height: 120px;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* ===== Contact Section ===== */
.contact {
  background-color: var(--background-light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-soft);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-info address {
  font-style: normal;
  margin-bottom: 2rem;
}

.opening-hours {
  margin-bottom: 2rem;
}

.opening-hours ul {
  list-style: none;
}

.opening-hours li {
  margin-bottom: 0.5rem;
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: var(--border-radius-small);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-small);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(106, 158, 211, 0.2);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-checkbox input {
  width: auto;
}

.form-checkbox label {
  margin: 0;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-links h3,
.footer-services h3,
.footer-social h3 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul,
.footer-services ul,
.footer-social ul {
  list-style: none;
}

.footer-links li,
.footer-services li,
.footer-social li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-services a,
.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover,
.footer-social a:hover {
  color: var(--text-light);
}

.footer-social a {
  display: inline-block;
  padding: 0.5rem 0;
  transition: transform var(--transition-fast);
}

.footer-social a:hover {
  transform: translateX(5px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Cookie Popup ===== */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.95);
  color: var(--text-light);
  padding: 1rem;
  z-index: 9999;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

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

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

.cookie-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-small);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-fast);
  margin-left: 1rem;
  white-space: nowrap;
}

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

/* ===== Success Page ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-light);
  padding-top: 80px;
}

.success-content {
  text-align: center;
  padding: 3rem;
  background-color: #fff;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
  max-width: 600px;
}

.success-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.success-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.success-text {
  margin-bottom: 2rem;
}

/* ===== Privacy & Terms Pages ===== */
.page-content {
  padding-top: 100px;
  padding-bottom: 5rem;
}

.page-content .container {
  background-color: #fff;
  padding: 3rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-soft);
}

.page-title {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.page-content h3 {
  margin: 2rem 0 1rem;
  color: var(--text-dark);
}

.page-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

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

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.slide-in {
  animation: slideIn 1s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.8s ease-out forwards;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .burger-menu {
    display: block;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: right var(--transition-medium);
    box-shadow: var(--shadow-hard);
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .nav-list li {
    margin: 1.5rem 0;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .services-grid,
  .stats-grid,
  .resources-grid,
  .innovation-grid,
  .awards-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .insights-content,
  .sustainability-content,
  .webinars-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-btn {
    margin-top: 1rem;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .schedule-item {
    flex-direction: column;
  }
  
  .schedule-date {
    align-self: flex-start;
  }
  
  .page-content .container {
    padding: 2rem 1rem;
  }
}