/* Flex container for horizontal layout */
.downloads-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* Each .conce will behave like a card */
.conce {
    width: 250px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s;
}

.conce:hover {
    transform: scale(1.03);
}

/* Heading styles */
.conce h2 {
    background: #004d99;
    color: white;
    font-size: 16px;
    padding: 10px;
    margin: 0;
    border-radius: 10px;
}

/* Image styling */
.conce img {
    width: 100%;
    height: auto;
    display: block;
}

/* Download section */
.conce1 {
    background-color: #004d99;
    padding: 10px;
    border-radius: 10px;
}

.conce1 h1 {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 600px) {
    .downloads-row {
        flex-direction: column;
        align-items: center;
    }

    .conce {
        width: 90%;
    }
}
