body {
    font-family: 'Inter', sans-serif;
    background-color: #F5F5F5;
    margin: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    color: rgb(8, 6, 6);
    font-size: 24px;
}


.logo {
    font-weight: 600;
    font-size: 24px;
}


.about-container {
    display: flex;
    margin: 20px;
    height: 100px; /* Adjust based on the height of the navbar */

}

.about-text {
    flex: 1;
    padding-right: 20px;
}

.about-text h2 {
    color: #7CA150;
    font-size: 24px;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 16px;
    color: #1A513C;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100px/* Adjust based on the height of the navbar */

}

.about-images img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.about-images img:last-child {
    margin-bottom: 0;
}
