:root {
  /* Основная монохромная палитра */
  --primary-color: #2b2d42;
  --primary-light: #3c3f5d;
  --primary-dark: #1a1b29;
  --secondary-color: #8d99ae;
  --secondary-light: #a5b0c1;
  --secondary-dark: #767f91;
  --accent-color: #ef233c;
  --accent-light: #f45868;
  --accent-dark: #d00f26;
  --text-light: #f8f9fa;
  --text-dark: #212529;
  --background-light: #edf2f4;
  --background-dark: #151623;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  --gradient-light: linear-gradient(135deg, var(--background-light), #ffffff);
  --gradient-overlay: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4));
  --gradient-card: linear-gradient(135deg, rgba(43, 45, 66, 0.9), rgba(26, 27, 41, 0.95));
  
  /* Тени */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  
  /* Скругления */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Анимации */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Размеры */
  --container-max-width: 1200px;
  --header-height: 80px;
  --footer-padding: 60px;
  --section-padding: 80px 0;
  --card-padding: 24px;
}

/* Базовые стили */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Утилиты */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 2.5rem;
}

/* Кнопки */
.btn {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}

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

.btn:hover::after {
  transform: translateX(0);
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  color: var(--text-light);
  text-decoration: none;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
  text-decoration: none;
  transform: translateY(-2px);
}

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

/* Хедер и навигация */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(43, 45, 66, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo a {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo a:hover {
  text-decoration: none;
}

.navigation {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
}

.nav-list a {
  color: var(--text-light);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-list a:hover {
  text-decoration: none;
}

.nav-list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  position: absolute;
  left: 0;
  transition: var(--transition-normal);
}

.mobile-menu-toggle span:first-child {
  top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-toggle span:last-child {
  bottom: 0;
}

.mobile-menu-toggle.active span:first-child {
  transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
  transform: translateY(-11px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 150px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: fadeInUp 1.2s ease 0.2s forwards;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 1.2s ease 0.4s forwards;
  animation-fill-mode: both;
}

.particle-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
}

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

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

.service-card {
  background: var(--background-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

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

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

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

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

.card-content {
  padding: var(--card-padding);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

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

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

/* Process Section */
.process {
  padding: var(--section-padding);
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.process-steps {
  margin-top: 3rem;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 25px;
  width: 2px;
  height: calc(100% - 25px);
  background-color: var(--accent-color);
  z-index: 1;
}

.step:last-child::after {
  display: none;
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--text-light);
  border-radius: 50%;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: 2rem;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.step-content {
  flex-grow: 1;
}

.step-content h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--secondary-light);
}

/* History Section */
.history {
  padding: var(--section-padding);
  background-color: var(--background-light);
}

.history-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

.history-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

.history-text {
  flex: 1;
}

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

/* Mission Section */
.mission {
  padding: var(--section-padding);
  background-color: var(--primary-light);
  color: var(--text-light);
}

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

.mission-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

.mission-text {
  flex: 1;
}

.mission-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.mission-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

/* Resources Section */
.resources {
  padding: var(--section-padding);
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.resource-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: var(--card-padding);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.1);
}

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

.resource-card p {
  color: var(--secondary-light);
  margin-bottom: 1.5rem;
}

.resource-link {
  display: inline-block;
  color: var(--accent-light);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

.resource-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.resource-link:hover {
  text-decoration: none;
}

.resource-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--background-light);
}

.testimonials-slider {
  margin-top: 3rem;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
}

.testimonials-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
  flex: 0 0 auto;
  width: 350px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--card-padding);
}

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

.testimonial-card .card-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

.testimonial-card .card-content {
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.testimonial-rating {
  color: var(--warning-color);
  font-size: 1.2rem;
}

/* Customer Stories Section */
.customer-stories {
  padding: var(--section-padding);
  background-color: var(--primary-light);
  color: var(--text-light);
}

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

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.story-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.story-card .card-image {
  width: 100%;
  height: 250px;
}

.story-card .card-content {
  padding: var(--card-padding);
  flex-grow: 1;
}

.story-card .card-content h3 {
  color: var(--text-light);
}

.story-card .card-content p {
  color: var(--secondary-light);
}

/* Behind the Scenes Section */
.behind-scenes {
  padding: var(--section-padding);
  background-color: var(--background-light);
}

.scenes-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

.scenes-text {
  flex: 1;
}

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

.scenes-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

/* FAQ Section */
.faq {
  padding: var(--section-padding);
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.faq-accordion {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-md);
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: var(--transition-normal);
}

.accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

.accordion-header.active {
  background-color: var(--accent-color);
}

.accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 1.5rem;
}

.accordion-content.active {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.accordion-content p {
  color: var(--secondary-light);
}

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

.contact-content {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  flex: 1;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.info-item p {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form {
  flex: 1;
  background: #fff;
  padding: var(--card-padding);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--secondary-color);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(239, 35, 60, 0.2);
}

/* Careers Section */
.careers {
  padding: var(--section-padding);
  background-color: var(--primary-light);
  color: var(--text-light);
}

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

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

.careers-text {
  flex: 1;
}

.careers-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.careers-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

.current-openings h3 {
  font-size: 1.8rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.openings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.opening-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: var(--card-padding);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.opening-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.1);
}

.opening-card h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.opening-card p {
  color: var(--secondary-light);
  margin-bottom: 1.5rem;
}

/* Footer Section */
.footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding-top: var(--footer-padding);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-logo p {
  color: var(--secondary-light);
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  justify-content: space-between;
}

.footer-links-column {
  min-width: 160px;
}

.footer-links-column h4 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer-links-column ul li {
  margin-bottom: 0.8rem;
}

.footer-links-column a {
  color: var(--secondary-light);
  transition: var(--transition-fast);
}

.footer-links-column a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-contact {
  flex: 1 1 300px;
}

.footer-contact h4 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer-contact p {
  color: var(--secondary-light);
  margin-bottom: 0.5rem;
}

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

.footer-bottom p {
  color: var(--secondary-light);
  margin-bottom: 0.5rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 27, 41, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.cookie-btn {
  background-color: var(--accent-color);
  color: var(--text-light);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-fast);
}

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

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

.success-content {
  max-width: 600px;
  padding: 3rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

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

.success-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.success-message {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

/* Privacy & Terms Pages */
.page-content {
  padding: 120px 0 60px;
}

.page-content .container {
  max-width: 800px;
}

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

.page-section {
  margin-bottom: 3rem;
}

.page-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.page-section p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.page-section ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-section ul li {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Particle Animation */
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0);
  }
  25% {
    transform: translateY(-30px) translateX(30px) rotate(90deg);
  }
  50% {
    transform: translateY(0) translateX(60px) rotate(180deg);
  }
  75% {
    transform: translateY(30px) translateX(30px) rotate(270deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(360deg);
  }
}

/* Media Queries */
@media (max-width: 1200px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .history-content,
  .mission-content,
  .scenes-content,
  .careers-content,
  .contact-content {
    flex-direction: column;
  }
  
  .contact-content {
    gap: 2rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .step::after {
    top: 50px;
    left: 20px;
  }
  
  .testimonial-card {
    width: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
    --card-padding: 20px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .services-grid,
  .stories-grid,
  .openings-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-list {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-list.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    padding: 80px 2rem 2rem;
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  
  .nav-list.active li {
    margin: 1rem 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  
  .step::after {
    display: none;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}