body {
    font-family: Arial, sans-serif;
    background-color: #000; /* Set background to black */
    color: #fff; /* Set text color to white */
    margin: 0;
    padding: 0;
}

.why-container {
    text-align: center;
    padding: 50px 20px;
}

.why-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.why-container p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 40px;
}

.why-feature-item {
    background-color: #1a1a1a; /* Slightly lighter black */
    border-radius: 8px;
    padding: 20px;
    width: 250px;
    margin: 15px;
    text-align: left;
}

.why-feature-item img {
    width: 40px;
    height: 40px;
}

.why-feature-item h3 {
    font-size: 20px;
    margin: 15px 0 10px;
}

.why-feature-item p {
    font-size: 16px;
    color: #ddd; /* Slightly lighter text color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-features {
        flex-direction: column;
        align-items: center;
    }

    .why-feature-item {
        width: 90%;
    }
}