 body {
      background: #f8faff;
      font-family: "Poppins", sans-serif;
      color: #333;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    /* NAVBAR */
    .navbar {
      background: #fff;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
      padding: 1rem 1.5rem;
    }

    .navbar img {
     /* height: 55px;*/
    }


    /* HEADING */
    .heading {
      text-align: center;
      margin-top: 60px;
      margin-bottom: 40px;
    }

    .heading h2 {
      color: #0f307f;
      font-weight: 700;
      font-size: 2.2rem;
      letter-spacing: 0.5px;
    }

    /* ABOUT SECTION */
    .aboutsection {
      max-width: 1200px;
      background: #fff;
      margin: 40px auto;
      border-radius: 18px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      padding: 60px 70px;
    }

    .aboutsection img {
      max-width: 320px;
      height: auto;
    }

    .aboutsection p {
      font-size: 1.05rem;
      text-align: justify;
      color: #444;
      line-height: 1.8;
      margin-bottom: 15px;
    }

    /* JOURNAL GRID */
    .bookouter {
      margin: 60px auto 80px;
      padding: 0 40px;
    }

    .journal-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      min-height: 520px;
      padding: 30px 25px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .journal-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .journal-thumb {
      max-height: 120px;
      width: auto;
    }

    .journal-title a {
      color: #0f307f;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
    }

    .journal-title a:hover {
      color: #f26722;
    }

    .editor-info p {
      font-size: 0.95rem;
      margin: 3px 0;
      color: #555;
    }

    .journal-meta {
      font-size: 0.95rem;
      color: #333;
      line-height: 1.5;
    }

    .login-btn {
      background: #0f307f;
      border: none;
      border-radius: 8px;
      padding: 10px 0;
      font-size: 0.95rem;
      font-weight: 500;
    }

    .login-btn:hover {
      background: #f26722;
    }

    .view-btn {
      font-size: 0.9rem;
      border-radius: 8px;
      padding: 8px 0;
    }

    /* FOOTER */
    .footer {
      background: #fff;
      text-align: center;
      padding: 20px;
      font-size: 0.95rem;
      color: #666;
      border-top: 1px solid #eee;
    }

    @media (max-width: 991px) {
      .aboutsection {
        padding: 30px;
      }

      .aboutsection img {
        max-width: 250px;
        margin-bottom: 20px;
      }

      .journal-card {
        min-height: auto;
        padding: 25px 20px;
      }

      .heading h2 {
        font-size: 1.8rem;
      }
    }