    .navbar {
      padding: 15px 20px;
      background-color: black;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-logo {
      height: 150px;
      width: auto;
      margin-right: 10px;
      transition: transform 0.3s ease-in-out;
    }

    .navbar-logo:hover {
      transform: scale(1.1);
    }

    .nav-link {
      font-size: 18px;
      font-weight: 500; 
      color: #ffffff;
      padding: 8px 15px;
      transition: color 0.3s ease-in-out;
    }

    .nav-link:hover {
      color: #ff0000;
    }

    .btn-outline-danger {
      padding: 10px 20px;
      border: 2px solid #000000;
      color: #ff0000;
      border-radius: 5px;
      font-weight: 600;
      transition: all 0.3s ease-in-out;
    }

    .btn-outline-danger:hover {
      background-color: #000000;
      color: #ffffff;
    }

    @media (max-width: 768px) {
      .navbar-logo {
        height: 50px;
      }

      .nav-link {
        font-size: 16px;
        padding: 10px;
        text-align: center;
      }

      .navbar-nav {
        flex-direction: column;
        gap: 15px;
      }

      .btn-outline-danger {
        width: 100%;
        text-align: center;
        margin-top: 15px;
      }
    }

    @media (max-width: 576px) {
      .navbar {
        padding: 10px;
      }

      .navbar-logo {
        height: 40px;
      }

      .nav-link {
        font-size: 14px;
        padding: 8px;
      }

      .btn-outline-danger {
        margin-top: 20px;
        padding: 12px 20px;
        font-size: 16px;
      }
    }




    #home .container {
      position: relative;
      z-index: 1;
    }


    .card img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .card-body {
      background-color: #212529;
      color: #ffffff;
    }

    .text-center h2 {
      color: #fdfdfd; 
    }


    .btn-warning {
      background-color: #ffffff;
      border: none;
      color: #000;
      font-weight: bold;
    }

    .btn-warning:hover {
      background-color: #fcfcfc;
      color: #000;
    }


    @media (max-width: 768px) {
      #home h1 {
        font-size: 2.5rem;
      }

      .card img {
        max-width: 100%;
        height: auto;
      }
    }

    #about {
      font-family: 'Playfair Display SC', serif;

    }

    #why-book h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; 
      font-size: 2.5rem; 
    }


    #why-book .h5 {
      font-family: 'Montserrat', serif;
      font-size: 1.25rem;
    }

    #about h2 {
      font-family: 'Gloria Hallelujah', cursive;
      font-size: 2.5rem; 
    }


    #about p {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.25rem; 
    }


    #about {
      background-color: #212529;
    }


    .text-white {
      color: white;
    }


    .container {
      text-align: center;
    }

    #why-book h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem; 
    }


    #why-book p {
      font-family: 'Playfair Display SC', serif;
      font-size: 1rem; 
    }


    #why-book {
      background-color: #212529;
    }


    .text-white {
      color: white;
    }


    .container {
      text-align: center;
    }

    #about .container-fluid {
      text-align: center;
    }

    #about h2, #about h3 {
      margin-bottom: 20px;
    }

    #about p {
      font-size: 20px;
      color: #ccc;
    }

