/* 🗂️ DOWNLOADS SECTION */
.downloads {
    padding: 120px 0;
    background: #f9f9f9;
}

.downloads-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 64px; /* Increased spacing between items */
}

/* 📄 DOWNLOAD ITEM */
.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 64px 48px;
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.01);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.download-item:hover {
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.04);
}

/* 📜 DOCUMENT INFO */
.download-text {
    flex: 1;
    max-width: 800px;
}

.download-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.download-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* 📥 DOWNLOAD BUTTON */
.btn-download {
    margin-top: 0px !important;
}

/* 📥 DOWNLOAD ICON */
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-right: 12px;
}

.btn-icon img {
    width: 100%;
    height: 100%;
}




/* 📱 MOBILE & TABLET STYLES */
@media (max-width: 1024px) {
    .downloads {
        padding: 80px 20px; /* Reduce padding on smaller screens */
    }

    .downloads-container {
        gap: 48px; /* Reduce spacing between items */
    }

    .download-item {
        flex-direction: column; /* Stack content vertically */
        align-items: flex-start;
        padding: 48px 32px;
    }

    .download-text {
        max-width: 100%;
    }

    .download-text h2 {
        font-size: 22px;
    }

    .download-text p {
        font-size: 16px;
    }

    .btn-download {
        width: 100%; /* Make button full width */
        justify-content: center;
        padding: 14px;
        font-size: 16px;
    }

    .btn-icon {
        width: 22px;
        height: 22px;
    }
}

/* 📱 MOBILE STYLES */
@media (max-width: 768px) {
    .downloads {
        padding: 60px 16px; 
    }

    .download-item {
        padding: 40px 24px;
        border-radius: 12px;
    }

    .download-text h2 {
        font-size: 20px;
    }

    .download-text p {
        font-size: 15px;
        line-height: 1.5;
    }

    .btn-download {
        font-size: 15px;
        margin-top: 20px !important;
    }

    .btn-icon {
        width: 20px;
        height: 20px;
    }
}
