:root {
  /* Пастельная цветовая схема */
  --primary-color: #a0d2eb;
  --secondary-color: #e5eaf5;
  --accent-color: #d0bdf4;
  --accent-dark: #8458b3;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-medium: #666666;
  --background-light: #f8f9fa;
  --background-medium: #e9ecef;
  --background-dark: #343a40;
  --success-color: #a8e6cf;
  --warning-color: #fdfd96;
  --error-color: #ff9aa2;
  --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  --transition-smooth: all 0.3s ease-in-out;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --section-padding: 80px 0;
  --container-padding: 0 20px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Button Styles */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: var(--text-dark);
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

.btn-small {
  padding: 8px 18px;
  font-size: 0.9rem;
}

/* Header Styles */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
  padding: 15px 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo a {
  color: var(--text-dark);
  text-decoration: none;
}

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

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

.desktop-nav a {
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding-bottom: 5px;
}

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

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

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

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

.mobile-menu-button span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 15px;
}

.mobile-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  padding: 8px 0;
}

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

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

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

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

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

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

.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

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

.mission-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.mission-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  margin: 0 auto;
}

.mission-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
  padding: var(--section-padding);
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(160, 210, 235, 0.2), rgba(208, 189, 244, 0.2));
  z-index: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

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

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

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

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.resources-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

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

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.resource-card h3 {
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.resource-card ul {
  list-style-position: inside;
  padding-left: 0;
}

.resource-card li {
  margin-bottom: 12px;
}

.resource-card a {
  color: var(--text-dark);
  transition: var(--transition-smooth);
  position: relative;
  padding-bottom: 2px;
}

.resource-card a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-dark);
  transition: var(--transition-smooth);
}

.resource-card a:hover {
  color: var(--accent-dark);
}

.resource-card a:hover::after {
  width: 100%;
}

/* Sustainability Section */
.sustainability {
  padding: var(--section-padding);
  background-color: var(--background-light);
  position: relative;
}

.sustainability-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

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

.sustainability-stats {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.stat-card {
  background-color: white;
  padding: 25px 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.sustainability-image {
  width: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

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

.sustainability-image:hover img {
  transform: scale(1.02);
}

/* Innovation Section */
.innovation {
  padding: var(--section-padding);
  background-color: var(--secondary-color);
  position: relative;
}

.innovation-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.innovation-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.innovation-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  margin: 0 auto;
}

.innovation-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.innovation-features {
  margin-top: 30px;
}

.feature {
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  border-radius: 4px;
  width: 0;
  transition: width 1.5s ease-in-out;
}

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

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

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  position: relative;
  transition: var(--transition-smooth);
  text-align: center;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-smooth);
  margin: 0 auto;
}

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

/* Events Section */
.events {
  padding: var(--section-padding);
  background-color: var(--secondary-color);
}

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

.event-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.event-date {
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  color: var(--text-dark);
  padding: 15px;
  text-align: center;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.event-date .month {
  font-size: 1.2rem;
}

.event-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.event-location {
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 15px;
}

.event-description {
  margin-bottom: 20px;
}

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

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

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

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-date {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.read-more {
  color: var(--accent-dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  align-self: flex-start;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-dark);
  transition: var(--transition-smooth);
}

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

.read-more:hover::after {
  width: 100%;
  background-color: var(--primary-color);
}

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

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

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

.info-item {
  margin-bottom: 30px;
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--accent-dark);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(160, 210, 235, 0.3);
}

.map {
  width: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

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

/* Footer */
.footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 70px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

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

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

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

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

.footer-links-column h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-links-column h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  margin-top: 10px;
  border-radius: 1.5px;
}

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

.footer-links-column li {
  margin-bottom: 12px;
}

.footer-links-column a {
  color: #ccc;
  transition: var(--transition-smooth);
}

.footer-links-column a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

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

.footer-newsletter h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-newsletter h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  margin-top: 10px;
  border-radius: 1.5px;
}

.footer-newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  min-width: 200px;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
}

.footer-newsletter button {
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: var(--text-dark);
}

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

/* Cookie Consent */
#cookieConsent {
  background-color: rgba(0,0,0,0.8);
  color: white;
  padding: 20px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

#acceptCookies {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px;
  cursor: pointer;
  border-radius: 4px;
}

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

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

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

.success-content h1 {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.success-content p {
  margin-bottom: 30px;
  color: var(--text-medium);
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 150px;
  padding-bottom: 80px;
  background-color: var(--background-light);
}

.privacy-content,
.terms-content {
  background-color: white;
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
}

.privacy-content h1,
.terms-content h1 {
  margin-bottom: 30px;
  text-align: center;
}

.privacy-content h2,
.terms-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--accent-dark);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-button {
    display: flex;
  }
  
  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .feature-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .event-card,
  .news-card,
  .project-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .contact-content {
    gap: 40px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .footer {
    padding: 50px 0 20px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

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

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

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

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

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

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

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

/* Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
h1{
  font-size: 17px;
 }
.mobile-menu-button{
  display: none;
}
.logo a h1::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #07b4f5;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 2px; /* якщо хочеш трохи заокруглення */
}