:root {
  /* Primary Colors */
  --primary-color: #3a7bd5;
  --primary-dark: #2c5ea1;
  --primary-light: #6fa0e1;

  /* Secondary Colors */
  --secondary-color: #00d2ff;
  --secondary-dark: #00a7cc;
  --secondary-light: #6bdfff;

  /* Accent Colors */
  --accent-color: #ff7e5f;
  --accent-dark: #e56348;
  --accent-light: #ff9b84;

  /* Neutral Colors */
  --dark-color: #333333;
  --dark-light: #555555;
  --light-color: #ffffff;
  --light-dark: #f5f5f5;
  --gray-color: #888888;
  --gray-light: #cccccc;

  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --secondary-gradient: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  --dark-gradient: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  --card-gradient: linear-gradient(135deg, #ffffff, #f5f5f5);
  --footer-gradient: linear-gradient(to bottom, #2c3e50, #1a2533);

  /* Typography */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Source Sans Pro', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  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: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  color: var(--dark-color);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: var(--space-sm);
}

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

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

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

ul {
  list-style: none;
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  margin: var(--space-sm) auto 0;
  border-radius: var(--radius-full);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
  box-shadow: var(--shadow-sm);
}

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

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

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--light-color);
}

button, 
input[type="submit"] {
  cursor: pointer;
  font-family: var(--body-font);
}

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

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

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

.logo {
  z-index: 1001;
}

.logo a {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo h1 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
}

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

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-links li a {
  color: var(--dark-color);
  font-weight: 600;
  position: relative;
  padding: var(--space-xs) 0;
}

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

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

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

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 0;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-md);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--light-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease forwards;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  color: var(--light-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
  animation: fadeIn 1s ease forwards 0.6s;
}

/* About Section */
.about {
  padding: var(--space-xl) 0;
  background-color: var(--light-color);
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image .image-container {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

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

.about-text {
  flex: 1;
}

.about-text h3 {
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

/* Services Section */
.services {
  padding: var(--space-xl) 0;
  background-color: var(--light-dark);
}

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

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

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

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

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

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

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

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

/* Team Section */
.team {
  padding: var(--space-xl) 0;
  background-color: var(--light-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.team .card-image {
  width: 100%;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  max-width: 300px;
}

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

/* Success Stories Section */
.success-stories {
  padding: var(--space-xl) 0;
  background: var(--light-dark);
}

.stories-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.story-slide {
  opacity: 0;
  transition: opacity var(--transition-normal);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.story-slide.active {
  opacity: 1;
  position: relative;
}

.story-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--light-color);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.story-image {
  flex: 0 0 250px;
}

.story-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.story-text {
  flex: 1;
}

.story-text h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.prev-btn,
.next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--light-color);
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.prev-btn:hover,
.next-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

/* Innovation Section */
.innovation {
  padding: var(--space-xl) 0;
  background-color: var(--light-color);
}

.innovation-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.innovation-image {
  flex: 1;
  text-align: center;
}

.innovation-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.innovation-text {
  flex: 1;
}

.innovation-text h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

/* Resources Section */
.resources {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
}

.resources-intro {
  text-align: center;
  margin-bottom: var(--space-lg);
  font-size: 1.2rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-md);
}

.resource-card {
  background: var(--light-color);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.resource-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.resource-card a {
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.resource-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.resource-card p {
  color: var(--dark-light);
  font-size: 0.9rem;
}

/* Blog Section */
.blog {
  padding: var(--space-xl) 0;
  background-color: var(--light-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.blog .card-image {
  height: 250px;
}

.date {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

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

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

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover:after {
  transform: translateY(-50%) translateX(5px);
}

/* Partners Section */
.partners {
  padding: var(--space-xl) 0;
  background-color: var(--light-color);
}

.partners-intro {
  text-align: center;
  margin-bottom: var(--space-lg);
  font-size: 1.2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  align-items: center;
  justify-items: center;
}

.partner-card {
  text-align: center;
  transition: transform var(--transition-normal);
}

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

.partner-card img {
  max-width: 200px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto var(--space-sm);
  filter: grayscale(100%);
  transition: filter var(--transition-normal);
}

.partner-card:hover img {
  filter: grayscale(0%);
}

.partner-card h3 {
  font-size: 1.1rem;
  color: var(--dark-light);
}

/* Customer Stories Section */
.customer-stories {
  padding: var(--space-xl) 0;
  background: var(--light-dark);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.testimonial-slide {
  opacity: 0;
  transition: opacity var(--transition-normal);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--light-color);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.testimonial-image {
  flex: 0 0 150px;
}

.testimonial-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.testimonial-content {
  flex: 1;
}

.testimonial-content h4 {
  color: var(--primary-color);
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

.testimonial-role {
  color: var(--gray-color);
  font-style: italic;
  margin-top: 0;
}

/* Press Section */
.press {
  padding: var(--space-xl) 0;
  background-color: var(--light-color);
}

.press-content {
  display: flex;
  gap: var(--space-lg);
}

.press-items {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.press-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--light-dark);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal);
}

.press-item:hover {
  transform: translateY(-5px);
}

.press-item img {
  width: 180px;
  height: 100px;
  object-fit: contain;
}

.awards {
  flex: 1;
  background: var(--primary-gradient);
  color: var(--light-color);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.awards h3 {
  color: var(--light-color);
  margin-bottom: var(--space-md);
}

.awards ul li {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 30px;
}

.awards ul li:before {
  content: '🏆';
  position: absolute;
  left: 0;
  top: 0;
}

/* News Section */
.news {
  padding: var(--space-xl) 0;
  background-color: var(--light-dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.news-item {
  background: var(--light-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.news-item:hover {
  transform: translateY(-10px);
}

.news-image {
  height: 200px;
  overflow: hidden;
}

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

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

.news-content {
  padding: var(--space-md);
}

.news-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

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

.contact-content {
  display: flex;
  gap: var(--space-lg);
}

.contact-info {
  flex: 1;
}

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

.contact-info ul {
  margin-bottom: var(--space-md);
}

.contact-info ul li {
  margin-bottom: var(--space-sm);
}

.contact-form {
  flex: 1;
  background: var(--light-dark);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.1);
}

/* Social Links */
.social-links h4 {
  margin-bottom: var(--space-sm);
}

.social-icons {
  display: flex;
  gap: var(--space-md);
}

.social-icons a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

/* Footer */
.footer {
  background: var(--footer-gradient);
  color: var(--light-color);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

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

.footer-logo h3 {
  color: var(--light-color);
  margin-bottom: var(--space-xs);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

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

.footer-column h4 {
  color: var(--light-color);
  margin-bottom: var(--space-md);
  position: relative;
}

.footer-column h4:after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary-gradient);
  margin-top: var(--space-xs);
  border-radius: var(--radius-full);
}

.footer-column ul li {
  margin-bottom: var(--space-xs);
}

.footer-column ul li a {
  color: var(--light-dark);
  transition: color var(--transition-fast);
}

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

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: var(--light-color);
  padding: var(--space-md);
  z-index: 9999;
  display: none;
}

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

.cookie-btn {
  background: var(--primary-gradient);
  color: var(--light-color);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.cookie-btn:hover {
  transform: scale(1.05);
}

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: var(--space-lg);
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
}

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

.success-content {
  max-width: 600px;
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

/* Privacy & Terms Pages */
.page-content {
  padding: 100px var(--space-md) var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.page-content h1 {
  margin-bottom: var(--space-lg);
  color: var(--primary-color);
}

.page-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--dark-color);
}

.page-content p {
  margin-bottom: var(--space-md);
}

.page-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  list-style-type: disc;
}

.page-content ul li {
  margin-bottom: var(--space-xs);
}

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Media Queries */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .about-content,
  .innovation-content,
  .contact-content,
  .story-content,
  .testimonial,
  .press-content {
    flex-direction: column;
  }
  
  .story-image,
  .testimonial-image {
    margin-bottom: var(--space-md);
  }
  
  .contact-info,
  .contact-form,
  .press-items,
  .awards {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--light-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .cookie-content {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section-title {
    margin-bottom: var(--space-md);
  }
  
  .resources-grid,
  .blog-grid,
  .news-grid,
  .services-grid,
  .team-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image,
  .innovation-image {
    margin-bottom: var(--space-md);
  }
}