/* Default for desktop */
.pdf-container {
    margin-top: 30px;
    width: 100%;
    height: 600px; /* Default height for large screens */
    border:1px solid #ccc;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .pdf-container {
        height: 400px; /* Reduce height for mobile */
    }
}

@media (max-width: 480px) {
    .pdf-container {
        height: 300px; /* Even smaller height for very small screens */
    }
}

.mahath.section-padding {
    padding: 30px 0 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    -webkit-font-smoothing: antialiased;
    overflow: auto;
}