.pdm-pdf-list {
    margin: 30px 0;
}

.pdm-pdf-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.pdm-pdf-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.pdm-pdf-title {
    color: #ff6600;
    margin: 0 0 15px 0;
    font-size: 1.3em;
    font-weight: 600;
}

.pdm-pdf-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.pdm-download-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 11px 30px;
    border-radius: 33px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.pdm-download-btn:hover {
    background-color: #e55a00;
}

/* Modal Styles */
.pdm-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.pdm-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdm-modal-content {
    background-color: #f5f5f5;
    margin: auto;
    padding: 30px;
    border: none;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.pdm-close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.pdm-close-modal:hover {
    color: #000;
}

.pdm-modal-content h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
}

/* Form Styles */
.pdm-form-section {
    margin-bottom: 25px;
}

.pdm-section-title {
    color: #ff6600;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

.pdm-form-section p {
    margin-bottom: 15px;
}

.pdm-form-section label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    text-align: left;
}
form#pdm-download-form {
    text-align: left;
}
.pdm-form-section input[type="text"],
.pdm-form-section input[type="email"],
.pdm-form-section input[type="tel"],
.pdm-form-section select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.pdm-form-section select {
    background-color: #fff;
    cursor: pointer;
}

.pdm-privacy-section {
    margin: 25px 0;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.pdm-privacy-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.pdm-privacy-section label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13px;
}

.pdm-privacy-section input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 3px;
    cursor: pointer;
}

.pdm-submit-btn {
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.pdm-submit-btn:hover {
    background-color: #e55a00;
}

.pdm-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.pdm-form-messages {
    margin: 15px 0;
    padding: 12px;
    border-radius: 4px;
    display: none;
}

.pdm-form-messages.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.pdm-form-messages.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
 
    
    .pdm-modal-content {
        width: 95%;
        padding: 20px;
    }
}

