body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(220, 216, 216, 50%);
    color: #333;
    text-align: center;
}

.container1 {
    padding: 20px;
    background-color: antiquewhite;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature {
    text-align: center;
    width: 150px;
}

.feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
    }
}
