﻿
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #222;
    background: #fff;
}

.container {
    max-width: 950px;
    margin: 24px auto;
    padding: 22px;
    line-height: 1.8;
    font-size: 18px;
}

h1 {
    font-size: 30px;
    color: #111;
    margin-bottom: 8px;
}

h2 {
    font-size: 22px;
    margin-top: 28px;
    color: #111;
}

.download-btn {
    background: #007bff;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 12px;
}

.section {
    background: #f9f9f9;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-top: 18px;
}

ul {
    margin-left: 20px;
}

.faq-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.tag-box span {
    background: #eef3ff;
    padding: 7px 12px;
    border-radius: 20px;
    margin: 4px;
    display: inline-block;
    font-size: 14px;
}

table.meta {
    width: 100%;
    font-size: 16px;
    border-collapse: collapse;
    margin-top: 8px;
}

    table.meta td {
        padding: 6px 8px;
        vertical-align: top;
    }

.download-grid {
    max-width: 850px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.download-item {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .download-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    }

.download-text h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.download-text p {
    margin-top: 6px;
    font-size: 14px;
    color: #666;
}

.download-action {
    text-align: right;
}

.download-btn {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .download-btn:hover {
        background: linear-gradient(135deg, #0a58ca, #084298);
        transform: scale(1.05);
    }

/* Recommended Row */
.recommended {
    border-left: 6px solid #ffc107;
    background: linear-gradient(135deg, #fff9e6, #ffffff);
}

.highlight {
    color: #b78103;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .download-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-action {
        margin-top: 15px;
        text-align: center;
    }
}


