/* Reset some default styles of the browser */
body, h1, h2, p, a, ul, li, input, select {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Arial, sans-serif;
}

/* Adding some space around the container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em 0;
}

/* Styling the hero section */
.hero-section {
    background: #2F4F4F;
    color: #FFFFFF;
    text-align: center;
    padding: 3em 0;
}

.hero-section .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.centered {
    font-size: 36px; /* Adjust the font size as per your preference */
    background-color: #FFA500; /* Adjust the background color as per your preference */
    padding: 0.5em 1em; /* Adjust the padding as per your preference */
    display: inline-block;
    margin: 0 auto;
    border-radius: 15px;
    margin-bottom: 30px;
}


/* Styling the order page */
.order-page {
    padding: 2em 0;
}

.order-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
    box-sizing: border-box; /* Add this property to fix the width calculation */
}

.order-card .product-images {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align images from the top */
    flex-wrap: wrap;
}

.order-card .product-images .image-container {
    flex: 0 0 50%; /* Each image container takes 50% of the width */
    padding: 10px; /* Add some spacing between the images */
    box-sizing: border-box;
}

.order-card .product-images img {
    width: 100%; /* Set the width to 100% to fill the image container */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.order-card h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.order-card p {
    margin-bottom: 10px;
}

.order-card form {
    margin-top: 20px;
}

.order-card form .form-group {
    margin-bottom: 10px;
}

.order-card form label {
    display: block;
    margin-bottom: 5px;
}

.order-card form select, .order-card form input[type="number"] {
    padding: 0.5em;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.order-card form .cta-button {
    background: #2F4F4F;
    color: #FFFFFF;
    padding: 0.5em 1em;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.order-card form .cta-button:hover {
    background: #7FFFD4;
    color: #FFFFFF;
}

/* Styling the footer */
.footer-section {
    background: #2F4F4F;
    color: #FFFFFF;
    padding: 2em 0;
    text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
    .order-card .product-images .image-container {
        flex: 0 0 100%; /* Each image container takes 100% of the width on smaller screens */
    }
}
