/* 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;
}

/* our story */
        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;
}

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

.order-image img {
    max-width: 60%;
    height: auto;
    background-image: none;
    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;
}

/* join our team */

.join-our-team {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 20px;
    border-radius: 30%;
}

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

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

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

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

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

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

/* meet our team */
.meet-our-team {
    background-color: #f8e7fc;
    padding: 20px;
    text-align: center; color: #7A5085;
    overflow: auto;
}

.meet-our-team h2 {
    margin-bottom: 20px;
}

.team-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.team-member-thumbnail {
    padding: 20px;
    max-width: 300px;
    height: auto;
    border-radius: 38%;
}



/* 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;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .quick-links,
    .social-links,
    .google-maps {
        margin-bottom: 20px;
    }

    .footer-social-icons {
        margin: 0 auto;
    }

    .team-images {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .team-member-thumbnail {
        max-width: 80%;
        margin-bottom: 20px;
    }
}