.section {
    /* background-color: #f0f4f3; */
    padding: 80px 40px;
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}
.highlighted-section {
    background-color: #d8e3e0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-bottom: 40px;

}
.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--highlight-color)
}
.section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4b5747;
    text-align: left;
    max-width: 800px;
}
.sub-section {
    margin-bottom: 40px;
    text-align: left;
}
.sub-section h3 {
    font-size: 24px;
    margin-bottom: 10px; 
    color: #4b5747;
}
.sub-section p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4b5747;
}
.sub-sections {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sub-sections {
    display: flex;
    margin: 50px 0;
}
.sub-section {
    flex: 1;
    min-width: 300px;
    margin: 20px;
    max-width: 600px;
}
@media (max-width: 800px) {
    .section {
        padding: 30px 0;
    }
    .section h2 {
        font-size: 28px;
    }
    
    .sub-sections {
        display: block;
    }
    .sub-section {
        margin: 35px 0;
    }
    .highlighted-section {
        padding: 40px 20px;
    }
}