.pdf-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #1e1e1e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border-left: 4px solid #ff3b1d;
    transition: all 0.3s ease;
    /* font-weight: bold; */
}
.pdf-btn:hover {
    background: #2a2a2a;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 59, 29, 0.2);
}
.pdf-btn i {
    color: #ff3b1d;
    font-size: 1.2rem;
}

.modal-pdf {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}
.modal-pdf-content {
    background-color: #121212;
    margin: 2% auto;
    padding: 20px;
    border: 1px solid #333;
    width: 90%;
    max-width: 1000px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.close-pdf {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-pdf:hover, .close-pdf:focus {
    color: #ff3b1d;
    text-decoration: none;
}

.flexc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.noscroll {
    overflow: hidden;
    transition: 0.2s;
}

a {
    text-decoration: none;
    color: inherit;
}