.pdf-page {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(13, 12, 12, 1) 57%, rgba(255, 255, 255, 1) 100%);
}


.pdf-page h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    margin-top: 50px;
    font-weight: 700;
    color: #c6fa42;
}

.pdf-page .pdf-card {
    background: #272f10;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
    border: 2px dashed #c6fa42;
    padding: 8px;
}

.pdf-page .pdf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.2);
}

.pdf-page .pdf-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.pdf-page .pdf-card h4 {
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #c6fa42;
}

.pdf-page .pdf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.pdf-page .pdf-card:hover .pdf-overlay {
    opacity: 1;
}

.pdf-page .pdf-overlay span {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.pdf-modal {
    position: fixed;
    inset: 0;
    background: rgb(0, 0, 0);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.pdf-modal.active {
    display: flex;
}

.pdf-modal .modal-contents {
    width: 70%;
    height: 70%;
    background: #000000;
    border-radius: 12px;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.pdf-modal .modal-contents iframe {
    flex: 1;
    width: 100%;
    border-radius: 8px;
}

.pdf-modal .close-btn {
    position: absolute;
    right: 48px;
    top: 21px;
    font-size: 28px;
    background: #fff;
    border-radius: 5px;
    padding: 2px;
    cursor: pointer;
}

.pdf-modal .download-btn {
    margin-top: 15px;
    text-align: center;
    background: #b6f138;
    padding: 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    color: #000;
    transition: 0.3s;
}

.pdf-modal .download-btn:hover {
    background: #000000;
    color: #fff;
}