    .ms-book-single {
        font-family: 'Noto Serif Bengali', serif;
        padding: 40px 20px;
        background-color: #fff8f3;
    }

    .ms-book-single h2 {
        font-size: 2rem;
        color: rgb(228, 23, 23);
        margin: 10px 0;
    }

    .ms-book-single p {
        font-size: 1.05rem;
        color: #555;
        max-width: 600px;
    }

    .ms-book-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        align-items: flex-start;

    }

    .ms-book-img {
        flex: 1 1 300px;
        max-width: 480px;
    }

    .ms-book-img img {
        width: 160px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .ms-order-form {
        flex: 1 1 350px;
        background: #ffffff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .ms-order-form h4 {
        margin-bottom: 20px;
        font-size: 1.3rem;
        color: #222;
    }

    .ms-order-form label {
        font-size: 1.2rem;
        display: block;
        color: rgb(228, 23, 23);
    }

    .ms-order-form input,
    .ms-order-form textarea {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        margin-bottom: 15px;
        font-size: 1rem;
    }

    .ms-order-form textarea {
        resize: none;
        height: 80px;
    }

    .ms-order-form button {
        background-color: #dc3545;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 1.2rem;
        cursor: pointer;
        width: 100%;
        transition: background 0.3s;
    }

    .ms-order-form button:hover {
        background-color: #bb2d3b;
    }

    .ms-note {
        margin-top: 10px;
        font-size: 0.9rem;
        color: #666;
        text-align: center;
    }

    @media (max-width: 768px) {
        .ms-book-wrapper {
            flex-direction: column;
            align-items: center;
        }
    }
