footer { position: static; }



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    color: #6b6b6b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.downloads-grid {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.download-card {
    width: 40%;
    background: white;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 200px;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
}

.document-type {
    font-size: 0.875rem;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #6b6b6b;
    font-size: 0.875rem;
}

.file-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #0071e3;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #0077ed;
}

.file-preview {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preview-thumbnail {
    width: 60px;
    height: 60px;
    background-color: #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }

    .download-card {
        width: 95%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }
}