.ac-download-grid {
    display: grid;
    gap: 30px;
    padding: 40px 10%;
}

.ac-download-card {
    background: black;
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
    transition: 0.3s;
}

.ac-download-card h3 {
    color: white;
    margin: 15px 0 20px;
    font-size: 18px;
}

.ac-icon img {
    width: 40px;
    filter: invert(51%) sepia(85%) saturate(3391%) hue-rotate(181deg) brightness(100%) contrast(101%);
}

.ac-btn {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #00BBFF;
    color: #00BBFF;
    text-decoration: none;
    transition: .3s;
}

.ac-btn:hover {
    background: #00BBFF;
    color: #000;
}
.ac-download-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Tablet */
@media (max-width: 1024px) {
    .ac-download-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 31px 5% !important; /* Optional smaller padding */
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ac-download-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        padding: 31px 2%; /* Optional smaller padding */
    }
}

/* Card and Button Styles (keep your existing) */
.ac-download-card {
    background: black;
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
    transition: 0.3s;
}

.ac-download-card h3 {
    color: white;
    margin: 15px 0 20px;
    font-size: 18px;
}

.ac-icon img {
    width: 40px;
    filter: invert(51%) sepia(85%) saturate(3391%) hue-rotate(181deg) brightness(100%) contrast(101%);
}

.ac-btn {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #00BBFF;
    color: #00BBFF;
    text-decoration: none;
    transition: .3s;
}

.ac-btn:hover {
    background: #00BBFF;
    color: #000;
}
