body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: none
    color(srgb red green blue) #333;}

    /* Navigation bar */
    nav.navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
        padding: 10px 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    nav .logo img {
        height: 50px;
    }

    nav .nav-links a {
        margin: 0 10px;
        text-decoration: none;
        color: #333;
    }

    nav .nav-links a:hover {
        color: #000000;
    }


 /* Order Online Page Styles */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    color: #6a1b9a;
    text-align: center;
    margin-top: 20px;
    font-size: 2.5em;
}

.order-online {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8e7fc;
    padding: 20px;
}

.order-image img {
    max-width: 60%;
    height: auto; 
    border-radius: 30%; 
    margin-right: 10px;
    margin-left: 50px;
}

.order-details {
    max-width: 1000px;
    text-align: left;
}

.order-details h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.order-details p {
    margin-bottom: 20px;
}

.order-details .button {
    display: inline-block;
    background-color: #7A5085;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 70px;
    font-weight: bold;
}

.order-details .button:hover {
    background-color: #7A5085;
}

.order-buttons {
    display: flex;
    gap: 20px;
}

/* Collect Points Section */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    color: #6a1b9a;
    text-align: center;
    margin-top: 20px;
    font-size: 2.5em;
}

.collect-points {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 20px;
}

.coinbox img {
    max-width: 60%;
    height: auto;
    border-radius: 30%; 
    margin-right: 10px;
    margin-left: 50px;
}

.order-details {
    max-width: 1000px;
    text-align: left;
}

.order-details h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.order-details p {
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: #7A5085;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 5px 0;
}

.footer a:hover {
    text-decoration: underline;
}

.quick-links,
.social-links,
.google-maps,
.copyright {
    flex: 1;
}

/* Quick links styling */
.quick-links {
    display: flex;
    flex-direction: column;
}

.quick-links a {
    margin-bottom: 10px;
}

/* Social links styling */
.footer-contact {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-social-icons {
    display: flex;
    justify-content: space-between;
    width: 150px;
}

.footer-social-icons img {
    width: 24px;
    height: 24px;
}

/* Google Maps styling */
.google-maps-footer {
    width: 200px;
    height: auto;
    border-radius: 30px;
}

/* Copyright styling */
.footer-copyright {
    font-size: 12px;
    text-align: center;
    flex-basis: 100%;
    margin-top: 20px;
}