
.why-choose-section {
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.why-choose-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #006400;
}

.reason-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.reason-box {
    background-color: #34495e;
    border-radius: 8px;
    padding: 30px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.reason-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #12f320;
}

.reason-box p {
    font-size: 16px;
    color: #ecf0f1;
    line-height: 1.5;
}

.reason-box i {
    font-size: 50px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reason-container {
        flex-direction: column;
        align-items: center;
    }

    .reason-box {
        width: 90%;
        margin-bottom: 20px;
    }
}
