:root {
  /* Цветовая схема */
  --primary-color: #2C3E50;
  --secondary-color: #1E88E5;
  --accent-color: #00BFA5;
  --success-color: #4CAF50;
  --warning-color: #FFC107;
  --danger-color: #F44336;
  --light-color: #F5F7FA;
  --dark-color: #232A34;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, #2C3E50, #4A5568);
  --gradient-secondary: linear-gradient(135deg, #1E88E5, #64B5F6);
  --gradient-accent: linear-gradient(135deg, #00BFA5, #4DB6AC);
  --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  --gradient-dark: linear-gradient(135deg, #232A34, #1A202C);
  
  /* Тени */
  --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-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
  
  /* Скругления */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Размеры контейнеров */
  --container-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--accent-color);
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

/* Контейнеры */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  margin: 1rem auto 0;
  border-radius: var(--border-radius-sm);
}

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

.btn::before, button::before, input[type='submit']::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: var(--transition-normal);
  z-index: -1;
}

.btn:hover::before, button:hover::before, input[type='submit']:hover::before {
  transform: translateX(0);
}

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

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

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

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

.btn-cookie {
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(35, 42, 52, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

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

.logo img {
  height: auto;
  transition: var(--transition-normal);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  color: white;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-links a:hover {
  color: var(--accent-color);
}

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

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: var(--transition-normal);
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

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

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

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

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('image/about-bg-texture.jpg') no-repeat center/cover;
  opacity: 0.05;
  z-index: -1;
}

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

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

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  z-index: -1;
}

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

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

/* History Section */
.history {
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.history .section-title {
  color: white;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: var(--border-radius-lg);
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  padding: 2rem 0;
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-year {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  font-weight: bold;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  width: 45%;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.timeline-content h3 {
  color: white;
  margin-bottom: 1rem;
}

.timeline-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Process Section */
.process {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.process::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/process-bg-texture.jpg') no-repeat center/cover;
  opacity: 0.05;
  z-index: -1;
}

.process-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 80px;
  left: 40px;
  width: 2px;
  height: calc(100% - 60px);
  background: var(--gradient-secondary);
  z-index: 0;
}

.step-content {
  flex-grow: 1;
  padding-top: 0.5rem;
}

.process-image {
  margin-top: 4rem;
  text-align: center;
}

.process-image img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Case Studies Section */
.case-studies {
  background: var(--light-color);
  position: relative;
}

.case-studies-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.case-studies-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 2rem;
  padding: 1rem 0;
  margin-bottom: 2rem;
  scrollbar-width: none; /* Firefox */
}

.case-studies-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.case-study-item {
  min-width: 100%;
  scroll-snap-align: start;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

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

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

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

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

.card-content {
  padding: 2rem;
  text-align: center;
}

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

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.prev-button, .next-button {
  background: var(--gradient-secondary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.prev-button:hover, .next-button:hover {
  background: var(--gradient-accent);
}

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

.statistics .section-title {
  color: white;
}

.statistics-widgets {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-widget {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

.stat-widget:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  display: inline-block;
}

.stat-prefix, .stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.stat-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.statistics-chart {
  text-align: center;
  margin-top: 3rem;
}

.statistics-chart img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

.chart-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.testimonials-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 2rem;
  padding: 1rem 0;
  margin-bottom: 2rem;
  scrollbar-width: none; /* Firefox */
}

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

.testimonial-item {
  min-width: 100%;
  scroll-snap-align: start;
}

.testimonial-content {
  padding: 3rem;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-color);
  opacity: 0.2;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
  border: 3px solid var(--accent-color);
}

.client-details h3 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.client-details p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--secondary-color);
}

/* Gallery Section */
.gallery {
  background: white;
  position: relative;
}

.gallery-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  text-align: center;
}

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

.image-container {
  height: 250px;
  overflow: hidden;
}

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

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

.gallery-caption {
  padding: 1rem;
  background: white;
  font-weight: 500;
}

/* Resources Section */
.resources {
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.resources .section-title {
  color: white;
}

.resources-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.resource-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.resource-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 0.15);
}

.resource-item h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.resource-item ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.resource-item li {
  margin-bottom: 1rem;
}

.resource-item a {
  color: white;
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
  transition: var(--transition-normal);
}

.resource-item a::before {
  content: '→';
  position: absolute;
  left: 0;
  transition: var(--transition-normal);
}

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

/* Events Calendar Section */
.events {
  background: var(--light-color);
  position: relative;
}

.events-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.events-calendar {
  max-width: 900px;
  margin: 0 auto;
}

.event-item {
  display: flex;
  margin-bottom: 2rem;
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.event-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background: var(--gradient-secondary);
  color: white;
  text-align: center;
  min-width: 120px;
}

.event-date .day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-details {
  padding: 1.5rem;
  flex-grow: 1;
}

.event-details h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.event-location, .event-time {
  display: inline-block;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--secondary-color);
}

.event-description {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
  background: white;
  position: relative;
}

.faq-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.accordion-item:hover {
  box-shadow: var(--shadow-lg);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.accordion-header h3 {
  margin-bottom: 0;
  flex-grow: 1;
  font-size: 1.25rem;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  transition: var(--transition-normal);
}

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

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

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* Contact Section */
.contact {
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact .section-title {
  color: white;
}

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

.contact-info, .contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-info h3, .contact-form-container h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 24px;
  height: 24px;
}

.contact-text h4 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.contact-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: 'IBM Plex Sans', sans-serif;
  transition: var(--transition-normal);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" width="18px" height="18px"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.form-group select option {
  background: var(--primary-color);
  color: white;
}

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

.form-checkbox input {
  width: auto;
  margin-right: 0.5rem;
}

.form-checkbox label {
  margin-bottom: 0;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.contact-map {
  margin-top: 3rem;
  text-align: center;
}

.contact-map img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

.map-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  margin-bottom: 1.5rem;
}

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

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links-column {
  flex: 1;
  min-width: 150px;
}

.footer-links-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

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

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

.footer-links-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-normal);
}

.footer-links-column ul li a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  flex-direction: column;
}

.social-links li a {
  position: relative;
  padding-left: 0;
  transition: var(--transition-normal);
}

.social-links li a:hover {
  color: var(--accent-color);
  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);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition-normal);
}

.close-modal:hover {
  color: var(--danger-color);
}

.modal-body {
  padding: 3rem;
  text-align: center;
}

.modal-body img {
  margin: 0 auto 1.5rem;
}

.modal-body h2 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.modal-body p {
  margin-bottom: 2rem;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(35, 42, 52, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
  margin-bottom: 0;
  flex-grow: 1;
}

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

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

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

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

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

.success-message {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Privacy and Terms Pages */
.page-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.page-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.page-section p, .page-section ul {
  margin-bottom: 1.5rem;
}

.page-section ul {
  padding-left: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .container {
    padding: 0 2rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .about-content, .contact-content {
    flex-direction: column;
  }
  
  .timeline-content {
    width: 80%;
  }
  
  .timeline-item, .timeline-item:nth-child(even) {
    justify-content: flex-start;
  }
  
  .timeline-year {
    left: 20px;
    transform: none;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .statistics-widgets {
    justify-content: center;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .process-step:not(:last-child)::after {
    left: 40px;
    top: 80px;
    width: 2px;
    height: 40px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .event-item {
    flex-direction: column;
  }
  
  .event-date {
    padding: 1rem;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .event-date .day, .event-date .month {
    font-size: 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .process-step, .timeline-content, .event-details, .contact-form {
    padding: 1.5rem;
  }
  
  .modal-body {
    padding: 2rem;
  }
  
  .statistics-widgets {
    gap: 1.5rem;
  }
  
  .stat-widget {
    min-width: 100%;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

.animate-slide-up {
  animation: slideUp 1s ease forwards;
}

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

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Animation Delays */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav-links li {
  margin-bottom: 1.5rem;
}

.mobile-nav-links a {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  transition: var(--transition-normal);
}

.mobile-nav-links a:hover {
  color: var(--accent-color);
}

.close-nav {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.close-nav span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  transform-origin: center;
  transition: var(--transition-normal);
}

.close-nav span:first-child {
  transform: rotate(45deg) translate(0, 0);
}

.close-nav span:last-child {
  transform: rotate(-45deg) translate(0, -0);
}

/* Specific Pages */
.privacy-page, .terms-page {
  padding-top: var(--header-height);
}

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 1rem;
}

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

.mt-2 {
  margin-top: 2rem;
}

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

.mt-3 {
  margin-top: 3rem;
}

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

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

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

.hidden {
  display: none;
}

.visible {
  display: block;
}
.logo img{
  width: 30px;
  height: 30px;
}