* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #D3D3D3; 
    color: black;
    margin: 0;
    grid-template-rows: auto 1fr auto; 
    background-attachment: fixed;
}

.parent {
    display: grid;
    grid-template-columns: 0.2fr 0.5fr 300px 0.5fr 0.2fr;
    grid-template-rows: auto 200px auto 0.5fr repeat(3, auto);
    gap: 0; 
    height: 100vh; 
}

.div1 {
    padding:1rem;
    text-align:center;
    grid-area: 1 / 2 / 2 / 5; 
}

.div2 {
    grid-area: 1 / 1 / 2 / 2; 
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    padding: 1rem; 
}

.div2 img {
    max-width: 100%; 
    height: auto; 
    margin-bottom: 1rem;
}

.div3 {
    grid-area: 1 / 5 / 2 / 6; 
}

.div4 {
    grid-area: 2 / 1 / 4 / 6; 
    padding: 0;
    background-image:url(Navajo.JPG);
    background-size: cover;
    background-position: center;
    height: 100%;
}

.main-image {
    width: 100%; 
    height: auto; 
    margin-bottom: 1rem; 
}

.div5{
    grid-area: 4 / 2 / 8 / 5; 
    background-color: #D3D3D3;
    text-align: center;
    background-image: url(box3.png);
    background-position: center;
    background-size: cover;
    padding: 20px;
}

.div6 {
        grid-area: 4 / 1 / 8 / 2; 
        display: flex; 
        justify-content: center;
        align-items: center; 
        background-image: url(corn.png);
        background-size: cover; 
        background-position: center; 
        height:100%; 
        width: 100%;
        padding: 1rem; 
        color: black; 
}

.div7 {
    grid-area: 4 / 5 / 8 / 6;
    display: flex; 
    align-items: center; 
    background-image: url(corn.png); 
    background-size: cover; 
    background-position: center; 
    height: 100%; 
    width: 100%; 
    padding: 1rem; 
    color: black; 
}

nav {
    grid-row: 1 / 2;
    grid-column: 1 / -1; 
    font-weight: bold;
    position: sticky;
    top: 0;
    font-size: 1.5rem;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    width: 10%;
}

nav a {
    text-decoration: none;
    padding: 1rem 0;
    display: block;
    text-align: center;
    color: inherit;
}

footer {
    grid-row: 3 / 4; 
    grid-column: 1 / -1; 
    text-align: center;
    padding: 1rem;
}

h1 {
    margin: 1rem 0;
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
    margin-top:0;
}
.values-purpose-container {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding: 20px; 
}

.values, .purpose {
    flex: 1;
    margin: 0 10px; 
}

h2 {
    text-align: center; 
}

ul {
    list-style-type: none; 
    padding: 0;
}

li {
    text-align: center; 
}

