body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


header img {
    height: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
}

.hero {
    text-align: center;
    background-color: #658e82;
    color: white;
    padding: 50px 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
    background-color: #7aa99f;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
}

.section:nth-child(odd) {
    flex-direction: row-reverse;
}

.section img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.section .text {
    width: 100%;
    min-height: 200;
    max-height: 200;
    padding: 20px;
    color: white;
    text-align: center;
}
/* Responsive Layout for Smaller Devices */
@media (max-width: 768px) {
    .section {
        flex-direction: column; /* Stack image and text vertically */
    }
    .section:nth-child(odd) {
        flex-direction: column;
    }

    .section img, 
    .section .text {
        width: 100%; /* Full width for both */
    }
}

footer {
    position: relative;
    left: 0;
    bottom: 0;
    text-align: center;
    padding: 20px;
    background-color: #658e82;
    color: white;
    font-size: 14px;
}

.button {
    display: inline-block;
    background-color: #658e82;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.quote {
    font-size: 20px;
    font-style: italic;
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
}

.quote span {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}