/* Container holding all features */
.mcontainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default to 3 columns per row */
    gap: 20px;
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto; /* Center the container horizontally */
}

/* Individual feature styling */
.featuree {
    padding: 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect on features */
.featuree:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Image styling */
.featuree image{
    max-width: 100px;
    margin-bottom: 20px;
}

/* Title styling */
.featuree h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

/* Description styling */
.featuree p {
    font-size: 1em;
    color: #666;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .mcontainer {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    }
}

/* Small devices adjustments (1 card per row) */
@media (max-width: 480px) {
    .mcontainer {
        grid-template-columns: 1fr; /* 1 item per row */
    }
}
