/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #812f06;
    color: #ffffff;
}

.division {
    position: relative;
    width: 100%;
    height: 10px;
    text-align: center;
    /* Adjust as needed */
    overflow: hidden;
    /* Hide overflow */
    background: rgb(43, 1, 1);
    background-color: rgb(43, 1, 1);
    /* Set background color */
    display: flex;
    align-items: center;
    /* Vertically center */
    font-size: 1.3rem;
    font-weight: bold;
}

/* Header */
header {
    background: #812f06;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    height: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

/* Image and Description Section */
.image-description-section {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    align-items: center;
    /* Vertically center align items */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Section: Image */
.image-section {
    flex: 1;
    /* Take up equal space */
    padding: 20px;
    text-align: center;
    /* Center the image */
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* Rounded corners for the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Add a subtle shadow */
}

/* Right Section: Description */
.description-section {
    flex: 1;
    /* Take up equal space */
    padding: 20px;
}

.description-section h2 {
    font-style: italic;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    /* Theme color */
}

.description-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Button Style */
/* Center the Order Now Button */
.btn {
    display: block;
    /* Make the button a block-level element */
    margin: 20px auto;
    /* Center the button horizontally */
    padding: 10px 20px;
    background: #ff6f61;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
    text-align: center;
    /* Center the text inside the button */
    width: fit-content;
    /* Adjust width to fit content */
}

.btn:hover {
    background: #ff4a3d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-description-section {
        flex-direction: column;
        /* Stack sections vertically on smaller screens */
    }

    .image-section,
    .description-section {
        flex: 1 1 100%;
        /* Take full width on smaller screens */
        padding: 10px;
    }
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    height: 100px;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #fdf8f8;
    font-style: italic;
}