:root {
  /* Основная аналоговая цветовая схема */
  --primary-color: #0d6efd;
  --primary-dark: #0b5ed7;
  --primary-light: #3d8bfd;
  --secondary-color: #6c45e4;
  --secondary-dark: #5a39be;
  --secondary-light: #8e6ff0;
  --accent-color: #2e93fd;
  --accent-dark: #1e7fd9;
  --accent-light: #52a7fe;

  /* Нейтральные цвета */
  --dark: #212529;
  --gray-dark: #343a40;
  --gray: #6c757d;
  --gray-light: #adb5bd;
  --light: #f8f9fa;
  --white: #ffffff;

  /* Шрифты */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Source Sans Pro', sans-serif;

  /* Тени для объемных элементов UI */
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  --button-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  
  /* Скругления */
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-sm: 4px;
  
  /* Переходы */
  --transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  --transition-slow: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* ======= Основные стили ======= */
body {
  font-family: var(--body-font);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 3.5rem;
}

h2, .h2 {
  font-size: 2.5rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--dark);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 3px;
}

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

p {
  margin-bottom: 1.5rem;
}

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

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

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

.container {
  padding: 0 15px;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Переопределение Bootstrap для текста на светлом фоне */
.bg-light {
  background-color: #f8f9fa !important;
  color: var(--dark);
}

.bg-dark {
  background-color: var(--dark) !important;
  color: var(--white);
}

/* ======= Кнопки ======= */
.btn {
  font-weight: 600;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
  box-shadow: var(--button-shadow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

.btn:hover::before {
  left: 0;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

.btn:active {
  transform: translateY(1px);
}

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

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

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.15rem;
}

.btn-link {
  box-shadow: none;
  padding: 0;
  text-transform: none;
  font-weight: 600;
  letter-spacing: normal;
  position: relative;
}

.btn-link::after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition);
}

.btn-link:hover {
  box-shadow: none;
  transform: none;
}

.btn-link:hover::after {
  margin-left: 10px;
}

/* ======= Формы ======= */
.form-control, .form-select {
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  font-family: var(--body-font);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

textarea.form-control {
  min-height: 120px;
}

/* ======= Навигация ======= */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar-dark {
  background-color: rgba(33, 37, 41, 0.95) !important;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--white) !important;
}

.nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
  position: relative;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

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

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--white);
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link:focus::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

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

/* ======= Hero Section ======= */
.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

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

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: var(--white);
}

.hero-section .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
}

/* ======= Features Section ======= */
.feature-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background-color: var(--white);
}

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

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

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

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

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

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

/* ======= Portfolio Section ======= */
.portfolio-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background-color: var(--white);
}

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

.portfolio-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

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

.progress {
  height: 10px;
  border-radius: 5px;
  background-color: var(--gray-light);
  overflow: hidden;
  margin-top: 1rem;
  width: 100%;
}

.progress-bar {
  background-color: var(--primary-color);
  border-radius: 5px;
}

/* ======= Events Section ======= */
.event-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background-color: var(--white);
}

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

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

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

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

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

.event-date {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
  z-index: 1;
}

.event-date .day {
  font-size: 2rem;
  line-height: 1;
}

.event-date .month {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.event-location {
  color: var(--gray);
  margin-bottom: 1rem;
}

.event-location i {
  margin-right: 0.5rem;
}

/* ======= Webinars Section ======= */
.webinar-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background-color: var(--white);
}

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

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

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

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

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

.webinar-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
  z-index: 1;
}

/* ======= Resource Section ======= */
.resource-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background-color: var(--white);
}

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

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

.resource-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(108, 69, 228, 0.2);
}

.resource-list {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
}

.resource-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.resource-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.resource-list a {
  color: var(--dark);
  transition: var(--transition);
}

.resource-list a:hover {
  color: var(--secondary-color);
}

/* ======= Sustainability Section ======= */
.sustainability-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background-color: var(--white);
}

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

.sustainability-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

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

.sustainability-metrics {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 1.5rem;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.metric-label {
  color: var(--gray);
  font-size: 0.9rem;
}

.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--white);
}

.parallax-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.parallax-section .container {
  position: relative;
  z-index: 2;
}

/* ======= Instructors Section ======= */
.instructor-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background-color: var(--white);
}

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

.instructor-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 2rem auto 1rem;
}

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

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

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

.instructor-position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--gray);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* ======= Gallery Section ======= */
.gallery-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  height: 300px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
  transform: translateY(20px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h3 {
  margin-bottom: 0.5rem;
  color: var(--white);
}

.gallery-overlay p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ======= Behind the Scenes Section ======= */
.behind-scenes-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background-color: var(--white);
}

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

.behind-scenes-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

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

/* ======= News Section ======= */
.news-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background-color: var(--white);
}

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

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

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

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

.news-card .news-date {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

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

/* ======= Contact Section ======= */
.contact-form-container {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  padding: 2.5rem;
  transition: var(--transition);
}

.contact-form-container:hover {
  box-shadow: var(--hover-shadow);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(108, 69, 228, 0.2);
  flex-shrink: 0;
}

.info-content {
  color: var(--white);
}

.info-content h3 {
  margin-bottom: 0.5rem;
  color: var(--white);
}

.info-content p {
  margin-bottom: 0;
  opacity: 0.8;
}

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

.footer-title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
}

.footer p {
  opacity: 0.8;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

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

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

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

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

.footer-subscribe .btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.footer .social-links {
  margin-top: 1.5rem;
}

.footer .social-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  margin-right: 1rem;
  font-size: 1rem;
}

.footer .social-links a:hover {
  color: var(--white);
  transform: translateY(-3px);
}

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

.success-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  margin: 0 auto 2rem;
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

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

.page-title {
  margin-bottom: 2rem;
  position: relative;
}

.page-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin-top: 15px;
  border-radius: 3px;
}

/* ======= Cookie Consent ======= */
#cookie-consent {
  background-color: rgba(33, 37, 41, 0.95);
  color: var(--white);
  padding: 15px 30px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

#cookie-consent p {
  margin-bottom: 0;
}

#accept-cookies {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}

/* ======= Animations ======= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
  
  h2, .h2 {
    font-size: 2rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .sustainability-metrics {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  h1, .h1 {
    font-size: 2rem;
  }
  
  h2, .h2 {
    font-size: 1.75rem;
  }
  
  h3, .h3 {
    font-size: 1.5rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}