/* ========== BASE STYLES ========== */
:root {
  /* Цветовая схема "Раздельно-дополнительная" */
  --primary: #4B7BF5;
  --primary-dark: #3A69E0;
  --primary-light: #6A8FF6;
  --secondary: #F5824B;
  --secondary-dark: #E06A3A;
  --secondary-light: #F7976A;
  --accent-1: #33D1BF;
  --accent-2: #FF5E7E;
  --neutral-100: #ffffff;
  --neutral-200: #f8f9fa;
  --neutral-300: #e9ecef;
  --neutral-400: #dee2e6;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  /* Неоморфные тени */
  --shadow-light: 15px 15px 30px rgba(200, 204, 216, 0.3);
  --shadow-dark: -15px -15px 30px rgba(255, 255, 255, 0.5);
  --shadow-inset-light: inset 5px 5px 10px rgba(200, 204, 216, 0.3);
  --shadow-inset-dark: inset -5px -5px 10px rgba(255, 255, 255, 0.5);
  
  /* Шрифты */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Другие переменные */
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
}

/* ========== RESET & GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--neutral-800);
}

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

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

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

ul {
  list-style: none;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-header p {
  color: var(--neutral-600);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1rem auto 0;
}

/* ========== НЕОМОРФНЫЙ СТИЛЬ ========== */
.neomorphic {
  background: var(--neutral-200);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: var(--transition);
}

.neomorphic:hover {
  box-shadow: var(--shadow-light), var(--shadow-dark), 0 0 0 5px rgba(75, 123, 245, 0.1);
}

.neomorphic-inset {
  background: var(--neutral-200);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-inset-light), var(--shadow-inset-dark);
}

/* ========== КОМПОНЕНТЫ ========== */

/* Кнопки */
.btn,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  background: var(--neutral-200);
  color: var(--neutral-800);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light), var(--shadow-dark), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:active,
button:active,
input[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-inset-light), var(--shadow-inset-dark);
}

.btn.primary,
button.primary,
input[type="submit"].primary {
  background: var(--primary);
  color: white;
}

.btn.primary:hover,
button.primary:hover,
input[type="submit"].primary:hover {
  background: var(--primary-dark);
}

.btn.secondary,
button.secondary,
input[type="submit"].secondary {
  background: var(--secondary);
  color: white;
}

.btn.secondary:hover,
button.secondary:hover,
input[type="submit"].secondary:hover {
  background: var(--secondary-dark);
}

/* Формы */
input, 
textarea, 
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  background: var(--neutral-200);
  color: var(--neutral-800);
  font-family: var(--font-body);
  font-size: 1rem;
  box-shadow: var(--shadow-inset-light), var(--shadow-inset-dark);
  transition: var(--transition);
}

input:focus, 
textarea:focus, 
select:focus {
  outline: none;
  box-shadow: var(--shadow-inset-light), var(--shadow-inset-dark), 0 0 0 3px rgba(75, 123, 245, 0.3);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--neutral-700);
}

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

.form-row {
  display: flex;
  gap: 1.5rem;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.checkbox label {
  margin-bottom: 0;
}

/* Карточки */
.card {
  background: var(--neutral-200);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-light), var(--shadow-dark), 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.card-content {
  padding: 1.5rem;
  text-align: center;
  flex: 1;
}

/* Сетки */
.content-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.column {
  flex: 1;
}

.column.is-one-third {
  flex: 1 0 30%;
}

.column.is-two-thirds {
  flex: 2 0 60%;
}

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

.image-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin: 0 auto;
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

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

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

/* Статистические виджеты */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-card {
  flex: 1 0 200px;
  background: var(--neutral-200);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--neutral-700);
  margin-bottom: 0;
}

/* Таймлайн */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.process-step:nth-child(odd) {
  flex-direction: row-reverse;
}

.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

.step-content {
  width: calc(50% - 50px);
  padding: 1.5rem;
  background: var(--neutral-200);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: var(--transition);
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-light), var(--shadow-dark), 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-image {
  width: calc(50% - 50px);
  text-align: center;
}

.step-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  margin: 0 auto;
}

/* Слайдер проектов */
.projects-slider {
  overflow: hidden;
  position: relative;
}

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

.prev-btn,
.next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

.prev-btn:hover,
.next-btn:hover {
  background: var(--primary-light);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neutral-400);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
}

.arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  transition: var(--transition);
}

.arrow.left {
  transform: rotate(135deg);
}

.arrow.right {
  transform: rotate(-45deg);
}

/* ========== СЕКЦИИ ========== */

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--neutral-200);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
}

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

.logo a {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.5rem;
  text-decoration: none;
}

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

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

.nav-menu a {
  color: var(--neutral-800);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

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

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

.burger-menu span {
  width: 100%;
  height: 3px;
  background: var(--neutral-800);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0 5rem;
  color: white;
  margin-top: -80px;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

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

.hero-content {
  max-width: 650px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
}

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

/* About */
.about {
  background: var(--neutral-200);
}

.about-text {
  margin-bottom: 2rem;
}

/* Services */
.services {
  background: var(--neutral-200);
}

.service-card {
  height: 100%;
}

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

.cta-container {
  text-align: center;
  margin-top: 3rem;
}

/* Process */
.process {
  background: var(--neutral-200);
}

/* Methodology */
.methodology {
  background: var(--neutral-200);
}

.methodology-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--neutral-200);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: var(--transition);
}

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

/* Projects */
.projects {
  background: var(--neutral-200);
}

.project-card {
  margin: 0 1rem;
}

/* Resources */
.resources {
  background: var(--neutral-200);
}

.resource-card {
  height: 100%;
}

.resource-card .card-image {
  height: 200px;
}

.read-more {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  margin-top: 1rem;
  position: relative;
}

.read-more::after {
  content: '→';
  margin-left: 0.5rem;
  transition: var(--transition);
}

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

.read-more:hover::after {
  margin-left: 0.75rem;
}

/* News */
.news {
  background: var(--neutral-200);
}

.news-card {
  height: 100%;
}

.news-card .date {
  display: inline-block;
  color: var(--neutral-600);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Press */
.press {
  background: var(--neutral-200);
}

.press-mentions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.press-item {
  display: flex;
  align-items: center;
  background: var(--neutral-200);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: var(--transition);
}

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

.press-logo {
  flex: 0 0 150px;
  margin-right: 2rem;
}

.press-content {
  flex: 1;
}

.press-content h3 {
  margin-bottom: 0.5rem;
}

.press-content .date {
  color: var(--neutral-600);
  font-size: 0.9rem;
}

/* Contact */
.contact {
  background: var(--neutral-200);
}

.contact-info {
  background: var(--neutral-200);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light), var(--shadow-dark);
  height: 100%;
}

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

.info-item:last-child {
  margin-bottom: 0;
}

.contact-form-container {
  background: var(--neutral-200);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

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

/* Footer */
.footer {
  background: var(--neutral-800);
  color: var(--neutral-300);
  padding: 4rem 0 2rem;
}

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

.footer-column {
  flex: 1 0 200px;
}

.footer-logo h2 {
  color: var(--neutral-100);
  margin-bottom: 1rem;
}

.footer-logo p {
  color: var(--neutral-400);
}

.footer-column h3 {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--neutral-400);
  transition: var(--transition);
}

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

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-links p {
  color: var(--neutral-100);
  margin-bottom: 0.5rem;
}

.social-links a {
  color: var(--neutral-400);
  transition: var(--transition);
}

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

.newsletter {
  margin-top: 2rem;
}

.newsletter p {
  color: var(--neutral-400);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  background: var(--neutral-700);
  border: none;
  border-radius: var(--border-radius-sm);
  color: var(--neutral-200);
}

.newsletter-form input::placeholder {
  color: var(--neutral-500);
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--neutral-700);
  padding-top: 2rem;
  text-align: center;
}

.copyright p {
  color: var(--neutral-500);
  margin-bottom: 0;
}

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

.success-content {
  max-width: 600px;
  background: var(--neutral-200);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 9999;
}

.cookie-popup p {
  color: white;
  margin-bottom: 10px;
}

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

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

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

/* Utility Classes for Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-up.visible {
  opacity: 1;
  transform: scale(1);
}

/* Terms & Privacy Pages */
.terms-page,
.privacy-page {
  padding-top: 100px;
  padding-bottom: 5rem;
}

.terms-content,
.privacy-content {
  background: var(--neutral-200);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

  .process-timeline::before {
    left: 20px;
  }

  .process-step {
    flex-direction: column-reverse !important;
    align-items: flex-start;
    margin-left: 50px;
  }

  .step-number {
    left: 20px;
    transform: translateX(-50%);
  }

  .step-content,
  .step-image {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .press-item {
    flex-direction: column;
  }

  .press-logo {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 4rem 0;
  }

  .navigation {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .content-columns {
    flex-direction: column;
  }

  .column.is-one-third,
  .column.is-two-thirds {
    flex: 1 0 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .footer-content {
    gap: 3rem;
  }

  .footer-column {
    flex: 1 0 100%;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .stat-card {
    flex: 1 0 100%;
  }
}

/* Navigation Menu for Mobile */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: 0;
  background: var(--neutral-200);
  overflow: hidden;
  z-index: 999;
  transition: height 0.3s ease;
}

.mobile-menu.active {
  height: calc(100vh - var(--header-height));
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.mobile-menu li {
  margin-bottom: 1.5rem;
  width: 100%;
  text-align: center;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem;
  font-size: 1.2rem;
  color: var(--neutral-800);
  font-weight: 500;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.mobile-menu a:hover {
  background: var(--primary-light);
  color: white;
}

/* Burger menu animation */
.burger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.burger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Additional utility classes */
.text-center {
  text-align: center;
}

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

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

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

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

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

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

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

.mt-3 {
  margin-top: 3rem !important;
}
@media (max-width: 7680px) {
    h1 {
        font-size: 1rem;
    }
  .hero-content h1 {
    font-size: 20px

;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    line-height: 1.2;
}
}
.burger-menu{
  display: none;
}