/* Common styles for both desktop and mobile */

/* Style the page title */
.page_title h1 {
    font-size: 32px;
    color: #333;
    text-align: center; /* Center the text for both desktop and mobile */
}

/* Style the separator line under the title */
.single_line {
    width: 50%;
    height: 2px;
    background-color: #FF5733;
    margin: 0 auto;
}

/* Style the "Products Available" button */
.menu_btn {
    font-size: 20px;
    background-color: #FF5733;
    color: #FFF;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    margin: 20px 0;
    display: inline-block;
    transition: background-color 0.3s;
}

.menu_btn:hover {
    background-color: #FF8148;
}

/* Add any additional CSS styles for your menu items here */

/* Mobile Styles */
@media screen and (max-width: 768px) {
    /* Adjust styles for smaller screens (e.g., mobile devices) */
    .single_line {
        width: 100%;
    }
    
    /* Center-align the text within the menu items */
    .menu_content {
        text-align: center;
    }

    /* Reduce font size for mobile */
    .menu_content h4 {
        font-size: 24px;
        margin-top: 10px;
    }

    .menu_content p {
        font-size: 16px;
    }

    /* Center-align the "view more" button */
    .menu_btn {
        display: block;
        margin: 20px auto;
    }
}
