


.why-us-section {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.why-us-container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.why-us-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-us-title h2 i {
    margin-right: 10px;
}

.why-us-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.why-us-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 45%;
    text-align: left;
    transition: transform 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-5px);
}

.why-us-icon {
    font-size: 2rem;
    color: teal;
    margin-bottom: 15px;
}

.why-us-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.why-us-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 768px) {
    .why-us-container {
        width: 90%;
    }

    .why-us-title h2 {
        font-size: 2rem;
    }

    .why-us-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .why-us-icon {
        font-size: 1.5rem;
    }

    .why-us-item h3 {
        font-size: 1.25rem;
    }

    .why-us-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-us-title h2 {
        font-size: 1.75rem;
    }

    .why-us-item {
        padding: 15px;
    }

    .why-us-icon {
        font-size: 1.25rem;
    }

    .why-us-item h3 {
        font-size: 1.1rem;
    }

    .why-us-item p {
        font-size: 0.85rem;
    }
}
