/* General styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6*;
    margin: 0;
    padding: 0;
    background-color: #ff8c00; /* Indian bright orange background color */
    color: #333; /* Default text color */
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Navigation styles */
nav {
    background-color: #ff8c00; /* Indian bright orange background color */
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: top;
    padding: 10px 20px;
}

.logo-img {
    height: 20px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
}

.nav-links {
    list-style-type: none;
    display: flex;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}
.large-image {
width: 500px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Main sections */
.section {
    padding: 40px 0;
    background-color: #fff; /* White background color for sections */
    text-align: center; /* Center align section content */
    /* border-top: 40px solid #ff8c00; Indian bright orange top border */
}

.section-heading {
    margin-bottom: 20px;
}

section h2 {
    margin-bottom: 20px;
}

section p {
    margin-bottom: 40px;
}

.meal-kit-categories {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.meal-kit {
    width: 30%;
    padding: 10px;
    background-color: #f8f8f8; /* Light gray background for meal kit cards */
    border: 1px solid #ccc; /* Gray border for meal kit cards */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align text to the left */
}

.meal-kit-img {
    width: 100%; /* Ensure image fills its container */
    border-radius: 5px 5px 0 0; /* Rounded corners only at the top */
}

.meal-kit h3 {
    margin-top: 10px;
}

.meal-kit p {
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    background-color: #ff8c00; /* Indian bright orange background for buttons */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff7f00; /* Darker shade of Indian bright orange on hover */
}

/* Footer styles */
footer {
    background-color: #ff8c00;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

footer p {
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links li {
        margin-bottom: 10px;
    }

    .meal-kit {
        width: 100%;
        margin-bottom: 20px;
    }
}
