
      .lang-switcher {
        display: flex;
        gap: 8px;
        border: 1.5px solid #a7d300;
        border-radius: 25px;
        overflow: hidden;
        user-select: none;
      }
      
      .lang-btn {
        background: transparent;
        border: none;
        padding: 6px 14px;
        font-weight: 600;
        color: rgb(255, 255, 255);
        cursor: pointer;
        font-family: 'Inter', sans-serif, Arial, sans-serif;
        font-size: 0.9rem;
        transition: background-color 0.3s ease, color 0.3s ease;
        border-radius: 0;
        flex: 1 1 auto;
        text-align: center;
      }
      
      .lang-btn:hover:not(.active),
      .lang-btn:focus-visible:not(.active) {
        background-color: #a7d300;
        outline: none;
      }
      
      .lang-btn.active {
        background-color: #a7d300;
        color: #fff;
        cursor: default;
        pointer-events: none;
      }
      /* Сброс */
      
      * {
        box-sizing: border-box;
      }
      
      body {
        margin: 0;
        font-family: 'Inter', sans-serif, Arial, sans-serif;
        background-image: url('/img/bg.png');
        background-repeat: no-repeat;
        background-size: cover;
        color: #2a2a2a;
        line-height: 1.5;
        font-family: 'Playfair Display', serif;
      }
      /* Навбар */
      
      .navbar {
        background: #008000;
        border-bottom: 1px solid #e5e5e5;
        opacity: 0.9;
        position: sticky;
        top: 0;
        z-index: 999;
        box-shadow: 0 2px 6px rgba(0, 128, 128, 0.05);
      }
      
      .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
      }
      
      .logo {
        color: #a7d300;
        font-weight: 700;
        font-size: 1.5rem;
        text-decoration: none;
        letter-spacing: 0.05em;
        user-select: none;
        transition: color 0.3s ease;
      }
      
      .logo:hover {
        color: #00a9a9;
      }
      
      .nav-links {
        list-style: none;
        display: flex;
        gap: 30px;
        margin: 0;
        padding: 0;
      }
      
      .nav-links li a {
        color: #a7d300;
        font-weight: 500;
        text-decoration: none;
        font-size: 1rem;
        padding: 6px 0;
        position: relative;
        transition: color 0.3s ease;
      }
      
      .nav-links li a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: #a7d300;
        transition: width 0.3s ease;
      }
      
      .nav-links li a:hover {
        color: #a7d300;
      }
      
      .nav-links li a:hover::after {
        width: 100%;
      }
      
      .burger {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
      }
      
      .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background-color: #a7d300;
        border-radius: 2px;
        transition: background-color 0.3s ease;
      }
      
      .burger:hover span {
        background-color: #00a9a9;
      }
      
      @media (max-width: 768px) {
        .nav-links {
          position: fixed;
          top: 60px;
          right: 0;
          background: #008000;
          height: calc(100vh - 60px);
          width: 220px;
          flex-direction: column;
          padding: 40px 20px;
          gap: 20px;
          box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
          transform: translateX(100%);
          transition: transform 0.3s ease;
          z-index: 1000;
        }
        .nav-links.active {
          transform: translateX(0);
        }
        .burger {
          display: flex;
        }
      }
      /* Контент - карточки блоков */
      
      main {
        max-width: 1000px;
        margin: 40px auto;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        gap: 40px;
      }
      
      .card {
        background: #008000;
        border-radius: 24px;
        opacity: 0.9;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 30px 25px;
        transition: box-shadow 0.3s ease;
      }
      
      .card:hover {
        box-shadow: 0 4px 15px rgba(0, 128, 128, 0.15);
      }
      
      .card h2 {
        margin-top: 0;
        color: #a7d300;
        font-weight: 700;
        margin-bottom: 15px;
      }
      
      .card p {
        margin: 0;
        color: #fff;
      }

      .card li {
        margin: 0;
        color: #fff;
      }
      /* Контакты отдельный блок */
      
      #contacts .card {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
      }
      
      #contacts .card a {
        color: #a7d300;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
      }
      
      #contacts .card a:hover {
        color: #00a9a9;
      }
      /* Футер */
      
      footer {
        background: #008000;
        opacity: 0.9;
        text-align: center;
        padding: 15px 20px;
        font-size: 0.9rem;
        color: #444;
        border-top: 1px solid #ddd;
        user-select: none;
      }
      
      footer a {
        color: #a7d300;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
      }

      footer div {
        color: rgb(255, 255, 255);
        transition: color 0.3s ease;
      }
      
      footer a:hover {
        color:#a7d300;
        text-decoration: underline;
      }
