:root {
  /* Основная пастельная цветовая схема */
  --primary-color: #f44336; /* Красный YPF */
  --primary-dark: #d32f2f;
  --primary-light: #ffcdd2;
  --secondary-color: #0d47a1; /* Синий YPF */
  --secondary-dark: #002171;
  --secondary-light: #cfd8dc;
  --accent-color: #ffd54f;
  --text-dark: #212121;
  --text-medium: #555555;
  --text-light: #ffffff;
  --background-light: #f5f5f5;
  --background-medium: #e0e0e0;
  --background-dark: #333333;
  
  /* Футуристические акцентные цвета */
  --future-accent1: rgba(244, 67, 54, 0.15);
  --future-accent2: rgba(13, 71, 161, 0.15);
  --glow-color: rgba(255, 213, 79, 0.5);
  
  /* Тени и глассморфизм */
  --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  --hover-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  --glass-background: rgba(255, 255, 255, 0.7);
  --glass-blur: blur(10px);
  
  /* Анимационные переменные */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s ease;
  
  /* Размеры и отступы */
  --container-width: 1200px;
  --section-padding: 80px 0;
  --card-padding: 25px;
  --border-radius: 10px;
  --button-radius: 50px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.8rem;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

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

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

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

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

/* Футуристические элементы и анимации */
@keyframes floatAnimation {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 var(--glow-color); }
  70% { box-shadow: 0 0 10px 10px rgba(255, 213, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 213, 79, 0); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Частицы анимации для фона */
.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: floatAnimation 10s infinite;
}

/* Кнопки */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  border-radius: var(--button-radius);
  cursor: pointer;
  transition: var(--transition-medium);
  text-align: center;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.btn.primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 67, 54, 0.3);
}

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

.btn.secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
}

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

/* Хедер и навигация */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition-medium);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  z-index: 2;
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition-medium);
}

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

.main-nav ul li {
  margin-left: 30px;
}

.main-nav ul li a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
}

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

.main-nav ul li a:hover::after {
  width: 100%;
}

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

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-medium);
}

/* Герой секция */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 0;
  padding-top: 0;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 20px;
}

.hero-content h1, .hero-content p {
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Секция услуг */
.services-section {
  padding: var(--section-padding);
  background-color: var(--background-light);
}

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

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

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

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

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

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

.card-content {
  padding: var(--card-padding);
  flex-grow: 1;
  text-align: center;
}

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

/* История секция */
.history-section {
  padding: var(--section-padding);
  background-color: white;
}

.history-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.history-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--primary-light);
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 40px;
  position: relative;
  width: 50%;
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-date {
  position: absolute;
  right: -140px;
  top: 0;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 8px 15px;
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.timeline-item:nth-child(even) .timeline-date {
  right: auto;
  left: -140px;
}

.timeline-content {
  background-color: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  position: relative;
  margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: 0;
  margin-left: 40px;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -15px;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: auto;
  left: -15px;
}

/* Секция станций */
.stations-section {
  padding: var(--section-padding);
  background-color: var(--background-light);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 60px;
}

.stat-widget {
  text-align: center;
  padding: 30px;
  margin: 10px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
}

.map-container {
  margin: 40px 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.station-finder {
  margin: 60px 0;
  text-align: center;
}

.finder-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 220px;
  text-align: left;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--background-medium);
  border-radius: 8px;
  font-family: 'Nunito', 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(--primary-color);
  box-shadow: 0 0 0 3px var(--future-accent1);
}

.featured-stations {
  margin-top: 60px;
}

.stations-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.stations-carousel::-webkit-scrollbar {
  display: none;
}

.stations-carousel .card {
  flex: 0 0 350px;
  scroll-snap-align: start;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  outline: none;
}

.carousel-controls button:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

/* Внешние ссылки секция */
.external-links-section {
  padding: var(--section-padding);
  background-color: white;
}

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

.link-card {
  padding: 25px;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: var(--transition-medium);
}

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

.link-card h3 {
  margin-bottom: 15px;
}

.link-card h3 a {
  color: var(--secondary-color);
  transition: var(--transition-fast);
}

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

.link-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* Устойчивость секция */
.sustainability-section {
  padding: var(--section-padding);
  background-color: var(--background-light);
}

.sustainability-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.2rem;
}

.sustainability-pillars {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 60px;
}

.pillar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.pillar-image {
  flex: 0 0 40%;
  min-width: 300px;
  height: 300px;
}

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

.pillar-content {
  flex: 1;
  padding: 30px;
}

.sustainability-goals {
  text-align: center;
  margin-top: 60px;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.goal {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: var(--transition-medium);
}

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

.goal-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Отзывы секция */
.testimonials-section {
  padding: var(--section-padding);
  background-color: white;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

.testimonial {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--card-shadow);
}

.testimonial-image {
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.testimonial-content {
  flex: 1;
  min-width: 280px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 2rem;
  color: var(--primary-color);
  font-family: serif;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-dark);
}

.rating {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 5px;
}

.customer-gallery {
  margin-top: 60px;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 200px;
}

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

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

.join-serviclub {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background-color: var(--future-accent2);
  border-radius: var(--border-radius);
}

/* Блог секция */
.blog-section {
  padding: var(--section-padding);
  background-color: var(--background-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.post-date {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  padding-right: 20px;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition-fast);
}

.read-more:hover::after {
  right: -5px;
}

.blog-subscribe {
  text-align: center;
  padding: 40px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.subscribe-form {
  display: flex;
  max-width: 500px;
  margin: 30px auto 0;
  gap: 15px;
}

.subscribe-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--background-medium);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--future-accent1);
}

/* Контакт секция */
.contact-section {
  padding: var(--section-padding);
  background-color: white;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

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

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-icon {
  font-size: 1.8rem;
  margin-right: 15px;
  color: var(--primary-color);
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: var(--background-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
}

.form-group.checkbox input {
  margin-right: 10px;
  width: auto;
}

/* Футер */
.main-footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 80px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-social h3 {
  color: var(--text-light);
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition-fast);
}

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

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

.footer-main h3 {
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-main h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-main ul {
  list-style: none;
}

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

.footer-main ul li a {
  color: var(--background-medium);
  transition: var(--transition-fast);
}

.footer-main ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--background-medium);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

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

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

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.success-content {
  max-width: 600px;
  background-color: white;
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Страницы Privacy и Terms */
.page-content {
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 900px;
  margin: 0 auto;
}

.page-content h1 {
  margin-bottom: 40px;
}

.page-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

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

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

.page-content ul li {
  margin-bottom: 10px;
}

/* Cookie Consent */
#cookie-consent {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
}

#cookie-consent p {
  color: white;
  margin-bottom: 10px;
}

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

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

/* Медиа запросы */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.4rem;
  }
  
  .timeline-date {
    position: relative;
    right: auto;
    left: auto;
    margin-bottom: 15px;
    display: inline-block;
  }
  
  .timeline-item, .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
  }
  
  .timeline-content, .timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
    margin-right: 0;
  }
  
  .timeline-content::before, .timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    right: auto;
  }
  
  .history-timeline::before {
    left: 15px;
    transform: none;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-medium);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav ul li {
    margin: 15px 0;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .burger-menu.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .pillar {
    flex-direction: column;
  }
  
  .pillar-image {
    width: 100%;
    flex: auto;
  }
  
  .finder-form {
    flex-direction: column;
    align-items: center;
  }
  
  .form-group {
    width: 100%;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .main-header {
    padding: 15px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  .stat-widget {
    min-width: 150px;
  }
  
  .card-image {
    height: 200px;
  }
  
  .footer-top, .footer-main {
    gap: 30px;
  }
}