/* ============================= */
/* RESOURCES DOWNLOAD CENTER */
/* ============================= */

.resources-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.resource-group {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #edf2f7;
}

.group-header i {
    color: var(--color-primary);
    width: 28px;
    height: 28px;
}

.group-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Download Items */
.download-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.download-item:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
    transform: translateX(5px);
}

.file-info {
    display: flex;
    flex-direction: column;
}

.file-name {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.file-meta {
    font-size: 0.75rem;
    color: #718096;
    text-transform: uppercase;
    margin-top: 2px;
}

.download-item i {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

/* Disclaimer text */
.guideline-disclaimer {
    margin-top: 4rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    color: #718096;
}

.guideline-disclaimer a {
    color: var(--color-primary);
    font-weight: 600;
}


