   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .library-hours-section {
      width: 100%;
      background: url("../images/Rectangle 466.png") center/cover no-repeat;
    }

    .library-hours-container {
      padding: 70px 70px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
    }

    /* ========== LEFT SIDE ========== */
    .library-hours-left {
      flex: 0 0 50%;
    }

    .library-title {
      margin-bottom: 25px;
      color: #1c3f94;
      font-family: Merriweather;
      font-weight: 700;
      font-size: 36px;
      line-height: 100%;
      letter-spacing: 1%;
    }

    .library-title span {
      color: #d80027;
    }

    /* TABLE */
    .library-table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    }

    .library-table th {
      background: #eef2fa;
      color: #1c3f94;
      padding: 14px;
      font-family: Poppins;
      font-weight: 600;
      font-size: 16px;
      line-height: 100%;
      text-align: left;
    }

    .library-table td {
      padding: 20px;
      border-bottom: 1px solid #e5e5e5;
      color: #1c3f94;
      font-family: Poppins;
      font-weight: 400;
      font-size: 16px;
      line-height: 100%;
      text-align: left;
    }

    .library-table tbody tr:last-child td {
      border-bottom: none;
    }

    /* ========== RIGHT SIDE IMAGE ========== */
    .library-hours-right {
      display: flex;
      align-items: center;
      gap: 25px;
      /* flex: 0 0 50%; */
    }

    .lib-img {
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
    }

    .lib-img img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* ========== RESPONSIVE ========= */
    @media (min-width: 1600px) {
      .library-hours-container {
        padding: 50px 70px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 100px;
      }
    }

    /* Tablets (768px to 1024px) */
    @media (max-width: 1024px) {
      .library-hours-container {
        padding: 40px 40px;
        gap: 30px;
      }

      .library-title {
        font-size: 32px;
      }

      .library-table th,
      .library-table td {
        font-size: 15px;
      }
    }

    /* Mobile Landscape & Small Tablets (481px to 767px) */
    @media (max-width: 1200px) {
      .library-hours-container {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
      }

      .library-hours-left,
      .library-hours-right {
        flex: 0 0 100%;
      }

      .library-title {
        font-size: 30px;
      }

      .library-table {
        font-size: 14px;
      }
    }

    /* Mobile Phones (320px to 480px) */
    @media (max-width: 480px) {
      .library-hours-container {
        padding: 30px 20px;
        gap: 20px;
      }

      .library-title {
        font-size: 26px;
        line-height: 120%;
      }

      .library-table th,
      .library-table td {
        padding: 12px;
        font-size: 14px;
      }

      .lib-img {
        border-radius: 12px;
      }
    }