/* 🔹 BASE RESET */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html, body {
      height: 100%;
    }
    body {
      font-family: 'Tajawal', sans-serif;
      background: #F5F5F5;
      color: #1a1a1a;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 20px;
    }

    /* 🔹 MAIN CONTAINER */
    .boxed {
      width: 100%;
      max-width: 1150px;
      background: #F5F5F5;
      border-radius: 6px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      padding: 30px 40px;
    }

    /* 🔹 HEADER SECTION */
    .header-flex {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }
    .header-left {
      flex: 1;
    }
    .header-left h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .header-left p {
      font-size: 18px;
      line-height: 1.6;
      max-width: 600px;
    }
    .header-right {
      flex: 0 0 auto;
      text-align: center;
    }
    .header-right img {
      width: 120px;
      object-fit: contain;
    }

    /* 🔹 LANGUAGE ICON GRID (Rows 1 & 2) */
    .lang-icons {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin: 30px 0;
    }
    .lang-icons a img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
      transition: transform 0.3s;
    }
    .lang-icons a:hover img {
      transform: scale(1.05);
    }

    /* 🔹 LARGE ICON ROW (Row 3) */
    .lang-icons-large {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 30px;
    }
    .lang-icons-large a img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
      transition: transform 0.3s;
    }
    .lang-icons-large a:hover img {
      transform: scale(1.05);
    }

    /* 🔹 DIVIDER LINE */
    .divider {
      height: 2px;
      width: 60%;
      margin: 30px auto;
      background-color: #ccc;
    }

    /* 🔹 CAROUSEL MODULE */
    #carousel-wrapper {
      overflow: hidden;
      width: 100%;
      margin: 20px 0;
    }
    #carousel-marquee {
      display: flex;
      width: 200%;
      animation: scroll-left 40s linear infinite;
    }
    #carousel-marquee img {
      flex: 0 0 auto;
      width: 200px;
      height: 150px;
      object-fit: cover;
      margin-right: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    @keyframes scroll-left {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* 🔹 FOOTER MODULE */
    footer {
      font-size: 14px;
      color: #555;
      text-align: center;
      margin-top: 40px;
    }
    footer a {
      all: unset;
      color: inherit;
      cursor: pointer;
    }
    .author-link {
      font-weight: bold;
      text-decoration: none;
    }
    .small-heart {
      font-size: 14px;
      vertical-align: middle;
    }

    /* 🔹 RESPONSIVE ADJUSTMENTS */
    @media (max-width: 768px) {
      .header-flex {
        flex-direction: column-reverse;
        text-align: center;
      }
      .header-right {
        margin-bottom: 20px;
      }
      .header-right img {
        width: 100px;
      }

      .lang-icons {
        grid-template-columns: repeat(2, 1fr);
      }
      .lang-icons-large {
        grid-template-columns: 1fr;
      }

      #carousel-marquee {
        animation-duration: 20s;
      }
      #carousel-marquee img {
        width: 200px;
        height: 200px;
      }
      footer {
        font-size: 12px;
        margin-top: 30px;
      }
    }

    @media (max-width: 480px) {
      .lang-icons {
        grid-template-columns: 1fr;
      }
    }