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

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      background: linear-gradient(135deg, #FFE066 0%, #87CEEB 50%, #98D8FF 100%);
      min-height: 100vh;
      padding-top: 250px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header */
.header {
  /* Изменяем прозрачность фона на более низкую */
  background: rgba(255, 255, 255, 0.7); 
  
  /* Добавляем префикс для лучшей совместимости */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
  
  color: #2D3748;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;


   background: linear-gradient(45deg, rgba(255, 105, 180, 1), /* Ярко-розовый */ rgba(0, 206, 209, 1), /* Бирюзовый */ rgba(255, 255, 0, 1) /* Ярко-желтый */);


}

    .header-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .logo h1 {
      font-size: 1.2rem;
      background: linear-gradient(45deg, #FF6B9D, #C44569, #F8B500);


      font-size: 2.2rem;
    background: linear-gradient(45deg, rgb(113 0 100), #bf0036, #674b00);


      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: bold;
    }

    .header-controls {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .btn {
      padding: 12px 24px;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      font-weight: bold;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .btn-instagram {
      background: linear-gradient(45deg, #E1306C, #C13584, #833AB4);
      color: white;
    }
   
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .lang-switch {
      display: flex;
      gap: 5px;
      background: rgba(255,255,255,0.9);
      border-radius: 25px;
      padding: 5px;
    }

    .lang-btn {
      padding: 8px 16px;
      background: transparent;
      border: none;
      border-radius: 20px;
      color: #2D3748;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: bold;
    }

    .lang-btn.active {
      background: linear-gradient(45deg, #FF6B9D, #C44569);
      color: white;
    }
   
    /* Mobile Hamburger Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 6px;
    }
   
    .hamburger .bar {
      width: 25px;
      height: 3px;
      background-color: #2D3748;
      transition: all 0.3s ease;
      border-radius: 2px;
    }
   
    /* Navigation */
    .nav {
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(10px);
      border-radius: 25px;
      padding: 10px 30px;
      box-shadow: 0 4px 20px rgba(255, 107, 157, 0.2);





      z-index: 999;
    }

    .nav-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 1fr);
      gap: 20px 30px;
      justify-items: center;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      display: block;
      padding: 12px 8px;
      color: #2D3748;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      text-align: center;
      font-size: 0.9rem;
    }

    .nav-link:hover {
      color: #FF6B9D;
    }

    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 280px;
      border-radius: 15px;
      box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1001;
    }

    .nav-item:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-item {
      padding: 15px 25px;
      border-bottom: 1px solid #F7FAFC;
    }

    .dropdown-item:last-child {
      border-bottom: none;
    }

    .dropdown-link {
      color: #4A5568;
      text-decoration: none;
      display: block;
      transition: color 0.3s ease;
    }

    .dropdown-link:hover {
      color: #FF6B9D;
    }
   
    .mobile-instagram {
      display: none; /* Скрыто по умолчанию */
    }

    /* Main Content */
    .main {
      padding: 2rem 0;
    }

    /* Hero Section */
    .hero {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      color: #2D3748;
      text-align: center;
      padding: 4rem 2rem;
      border-radius: 30px;
      margin-bottom: 3rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
    }

    .hero::before {
      content: '🌈✨🎈🌟🎨🧸';
      position: absolute;
      top: 20px;
      left: 0;
      right: 0;
      font-size: 2rem;
      opacity: 0.1;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .hero-content {
      position: relative;
      z-index: 1;

    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      background: linear-gradient(45deg, #FF6B9D, #C44569, #F8B500, #6C5CE7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: bold!important;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #4A5568;
    }

    /* Info Cards Grid */
    .info-section {
      margin: 4rem 0;
    }

    .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      background: linear-gradient(45deg, #FF6B9D, #C44569);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: bold;
      background: linear-gradient(45deg, rgb(113 0 100), #bf0036, #674b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

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

    .card {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 2.5rem;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
      color: white;
    }
   
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
    }
   
    /* Card Colors */
    .card-1 { background: linear-gradient(45deg, #FF6B9D, #C44569); }
    .card-2 { background: linear-gradient(45deg, #F8B500, #F1C40F); }
    .card-3 { background: linear-gradient(45deg, #6C5CE7, #4834d4); }
    .card-4 { background: linear-gradient(45deg, #00D2D3, #0096C7); }
    .card-5 { background: linear-gradient(45deg, #2ED573, #1DD1A1); }
    .card-6 { background: linear-gradient(45deg, #FF8A3D, #FF6B6B); }

    .card h3 {
      color: white;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .card p {
      color: white;
      line-height: 1.8;
    }


    /* Photo Gallery Section - Slider */
    .gallery-section {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      border-radius: 30px;
      padding: 3rem;
      margin: 4rem 0;
      box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
    }
   
    .slider-container {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      margin-top: 2rem;
    }
   
    .gallery-slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
      gap: 1.5rem;
      padding: 1.5rem 0;
      scroll-behavior: smooth;
    }
   
    .gallery-item {
      min-width: 250px;
      max-width: 250px;
      height: 250px;
      border-radius: 20px;
      background: linear-gradient(45deg, #FF6B9D, #C44569, #F8B500, #6C5CE7);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 3rem;
      flex-shrink: 0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
   
    .slider-controls {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }
   
    .slider-control-btn {
      background: rgba(255, 107, 157, 0.8);
      border: none;
      color: white;
      font-size: 1.5rem;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
   
    .slider-control-btn:hover {
      background: #FF6B9D;
    }

    .view-all-btn {
      padding: 12px 30px;
      background: linear-gradient(45deg, #6C5CE7, #4834d4);
      color: white;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
   
    .view-all-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    /* News Section */
    .news-section {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      border-radius: 30px;
      padding: 3rem;
      margin: 4rem 0;
      box-shadow: 0 20px 40px rgba(0, 210, 211, 0.2);
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .news-item {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
    }

    .news-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #FF6B9D, #F8B500, #00D2D3);
    }

    .news-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
    }
   
    .news-item-link {
      text-decoration: none;
      color: inherit;
    }

    .news-date {
      color: #9CA3AF;
      font-size: 0.9rem;
      margin-bottom: 1rem;
      font-weight: 500;
    }

    .news-item h4 {
      color: #2D3748;
      margin-bottom: 1rem;
      font-size: 1.3rem;
    }

    .news-item p {
      color: #4A5568;
      line-height: 1.7;
    }
   
    .news-read-more {
      display: block;
      margin-top: 1rem;
      font-weight: bold;
      color: #C44569;
      transition: color 0.3s ease;
    }

    .news-read-more:hover {
      color: #FF6B9D;
    }
   
    /* Contact Section */
    .contact-section {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      border-radius: 30px;
      padding: 3rem;
      margin: 4rem 0;
      text-align: center;
      box-shadow: 0 20px 40px rgba(248, 181, 0, 0.2);
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .contact-item {
      padding: 1.5rem;
      border-radius: 15px;
      background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(108, 92, 231, 0.1));
    }

    .contact-item h4 {
      color: #2D3748;
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
    }

    .contact-item p {
      color: #4A5568;
    }

    /* Language Switching */
    .lang-kz {
      display: block;
    }

    

    .show-ru .lang-kz {
      display: none;
    }

    .show-ru .lang-ru {
      display: block;
    }

    /* Footer */
    .footer {
      background: rgba(45, 55, 72, 0.95);
      backdrop-filter: blur(10px);
      color: white;
      text-align: center;
      padding: 3rem 0;
      margin-top: 4rem;
      border-radius: 30px 30px 0 0;
    }

    .footer p {
      margin-bottom: 1rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .header-top {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        position: relative;
      }

      .logo h1 {
        font-size: 1rem;
        margin-top: 10px;
      }

      .header-controls {
        display: none;
      }

      .lang-switch {
        order: 1;
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        padding: 0;
      }

      .logo {
        order: 2;
      }
     
      .nav {
        border-radius: 0;
        padding: 10px;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 70%;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto;
        padding-top: 80px;
        z-index: 1000;



      }
     
      .nav.open {
        left: 0;
      }

      .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
      }
     
      .nav.open + .nav-overlay {
        display: block;
      }
     
      .nav-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 0;
      }
     
      .nav-item {
        border-bottom: 1px solid rgba(255, 107, 157, 0.1);
        width: 100%;
        text-align: left;
      }
     
      .nav-link {
        padding: 15px;
        font-size: 1rem;
      }
     
      .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 107, 157, 0.1);
        margin-top: 0;
        display: none;
        border-radius: 0;
      }

      .dropdown.mobile-open {
        display: block;
      }
     
      .dropdown-item {
        padding-left: 35px;
      }
     
      .hamburger {
        display: flex;
        position: absolute;
        top: 30px;
        left: 20px;
        z-index: 1001;
      }
     
      .hero h2 {
        font-size: 2.5rem;
      }

      .cards-grid, .news-grid, .contact-info {
        grid-template-columns: 1fr;
      }
     
      .gallery-slider {
        padding: 0;
      }
     
      .gallery-item {
        min-width: 90%;
      }

      .mobile-instagram {
        display: block;
        margin-top: 15px;
        text-align: center;
        border-top: 1px solid rgba(255, 107, 157, 0.2);
        padding-top: 15px;
      }
    }

    /* Animation for cards */
    .animate-card {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .animate-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .nav {
  /* Градиентный фон с яркими цветами */
  background: linear-gradient(
    45deg,
    rgba(255, 105, 180, 0.5), /* Ярко-розовый */
    rgba(0, 206, 209, 0.5), /* Бирюзовый */
    rgba(255, 255, 0, 0.5) /* Ярко-желтый */
  );
  
  /* Эффект стеклянности */
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%); /* Префикс для Safari */
  
  /* Дополнительные стили для лучшего отображения */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Тонкая белая рамка */
  border-radius: 15px; /* Скругление углов */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Легкая тень */



  background: linear-gradient(45deg, rgb(255 255 255 / 50%), rgb(191 254 255 / 50%), rgb(255 255 255 / 50%));
    backdrop-filter: blur(10px) saturate(150%);


}

/* Мобильные стили */
@media (max-width: 768px) {
  
  /* Уменьшение padding для body */
  body {
    padding-top: 70px; /* Примерное значение, можно настроить */
  }

.logo{
      margin-left: 50px;
}

  /* Смещение названия сайта, чтобы не накладывалось на иконку бургера */
  .site-title {
    margin-right: 60px; /* Отступ справа, чтобы освободить место для иконки */
  }


  .nav {
    background: linear-gradient(45deg, rgba(255, 105, 180, 1), /* Ярко-розовый */ rgba(0, 206, 209, 1), /* Бирюзовый */ rgba(255, 255, 0, 1) /* Ярко-желтый */);



  }

.header{
  background: linear-gradient(45deg, rgb(243 243 122), /* Ярко-розовый */ rgb(136 253 255), /* Бирюзовый */ rgb(73 255 121) /* Ярко-желтый */);


}

   .logo h1 {
      font-size: 1.2rem;
    }
}

.mobile-lang-switch {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .mobile-lang-switch {
    display: flex;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    z-index: 1002;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 28px;
  }
}

.image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

body{
  background: linear-gradient(45deg, rgb(255, 105, 180), rgb(0, 206, 209), rgb(255, 255, 0));
}


.gallery-item {
  min-width: 250px;
  max-width: 250px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden; /* Чтобы фото не вылезало за рамки */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #fff; /* Убираем градиентный фон, будет фото */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Фото обрезается, но не искажается */
  display: block;
}