body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

/* About Us Section */
.about-us-background {
    background-color: #5b9a8b; /* Blue background similar to the circles */
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    margin: 0 auto; /* Center the container */
}

.about-us-content {
    color: white;
    text-align: center; /* Center align text */
}

.about-us-background h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-us-background p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Why Choose Us Section */
.why-choose-us h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.circle-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.circle {
    width: 180px;  /* Circle size */
    height: 180px; /* Circle size */
    border-radius: 50%;
    background-color: #5b9f8f;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
}

.circle h3 {
    margin: 0;
    padding: 10px;
}

.feature-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature {
    width: 22%;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}