body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: black;
    margin: 0;
    padding: 20px;
    background-color: white;
}

/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: 2fr 2fr 3fr 3fr 3fr 3fr; /* Adjusting column proportions */
    grid-template-rows: auto auto auto auto auto auto; /* Defining row heights */
    max-width: 900px;
    margin: auto;
    gap: 5px; /* Small gap for better spacing */
    padding: 10px;
    border: 2px solid black;
}

/* Individual Box Styling */
.grid-container > div {
    border: 2px solid black; /* Helps visualize boxes like InDesign */
    padding: 15px;
    box-sizing: border-box; /* Ensures padding doesn't break the box size */
}

/* Title & Net Weight */
.title {
    grid-column: 1 / 7;
    font-weight: bold;
    display: flex;
    justify-content: space-between; /* Pushes net weight to the right */
    align-items: center;
}

/* Nutrition Facts */
.nutrition {
    grid-column: 1 / 3;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Calories Box */
.calories {
    grid-column: 1 / 3;
}

/* Nutrient Details */
.nutrients {
    grid-column: 1 / 3;
}

/* Ingredients Box */
.ingredients {
    grid-column: 3 / 7;
    grid-row: 2 / span 3; /* Expands correctly */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Distributor Section */
.distributor {
    grid-column: 3 / 7;
}

/* Contact Section */
.contact {
    grid-column: 3 / 7;
    background-color: black;
    color: white;
    padding: 15px;
}

/* Vitamins Box */
.vitamins {
    grid-column: 1 / 3; /* Stretches across the left two columns */
    grid-row: 5 / 7; /* Extends to cover full left bottom */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
}

/* Milton Hershey School Box */
.school {
    grid-column: 3 / 7;
    grid-row: 6 / 7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    text-align: center;
    border-top: 2px solid black;
}
