/* Why Us Intro Section */
#why-us-intro {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #1E2A38, #2E3E4E);
    color: white;
}

/* Why Us Features List */
#why-us-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px;
    text-align: center;
    margin: 5vw 0;
}

.why-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.why-item img {
    width: 80px;
    margin-bottom: 15px;
}

.why-item h2 {
    font-size: 22px;
    color: #1E2A38;
}

.why-item p {
    font-size: 16px;
    color: #555;
}

/* Call-to-Action */
#why-us-cta {
    text-align: center;
    padding: 50px;
    background-color: #1E2A38;
    color: white;
}

.cta-button {
    background-color: #ff6600;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #e65500;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    #why-us-list {
        flex-direction: column;
        align-items: center;
    }
}
