    @import url('../../../css2');

    body {
      background-image: url('../images/bg.webp');
      background-size: cover;
      background-position: top;
      background-repeat: no-repeat;
      color: #fff;
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
    }

    .language-selector {
      padding: 100px 15px;
    }

    .language-selector h1 {
      font-size: 48px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 40px;
    }

    .language-selector p {
      font-size: 18px;
      text-align: center;
      margin-bottom: 60px;
      color: rgba(255, 255, 255, 0.8);
    }

    .language-card {
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 40px 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .language-card:hover {
      transform: translateY(-10px);
      box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    }

    .language-card img {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
    }

    .language-card h3 {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #fff;
    }

    .language-card p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 25px;
    }

    .language-card a {
      text-decoration: none;
      display: inline-block;
      padding: 12px 30px;
      font-size: 16px;
      color: #fff;
      background: linear-gradient(105deg, #E59113, #A213E5);
      border-radius: 8px;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .language-card a:hover {
      background: linear-gradient(105deg, #A213E5, #E59113);
      transform: scale(1.05);
    }

    .language-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -50%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
      transform: skewX(-45deg);
      transition: 0.5s;
    }

    .language-card:hover::before {
      left: 150%;
    }

    .language-info {
      margin-top: 20px;
      text-align: center;
    }

    .language-info p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8);
      max-width: 400px;
      margin: 0 auto;
    }

    .seo-content {
      margin-top: 80px;
      padding: 0 15px;
    }

    .seo-content h2 {
      font-size: 36px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 30px;
    }

    .seo-content p {
      font-size: 18px;
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      color: rgba(255, 255, 255, 0.8);
    }

    @media (max-width: 991px) {
      .language-selector h1 {
        font-size: 36px;
      }

      .language-selector p {
        font-size: 16px;
      }

      .language-card h3 {
        font-size: 20px;
      }

      .language-card p {
        font-size: 14px;
      }

      .language-card a {
        padding: 10px 20px;
        font-size: 14px;
      }

      .seo-content h2 {
        font-size: 28px;
      }

      .seo-content p {
        font-size: 16px;
      }
    }

    @media (max-width: 767px) {
      .language-selector {
        padding: 80px 15px;
      }

      .language-selector h1 {
        font-size: 32px;
      }

      .language-card {
        margin-bottom: 30px;
      }

      .language-card img {
        width: 60px;
        height: 60px;
      }

      .language-info p {
        font-size: 14px;
      }
    }