@media print {
    body {
        background-image: url('img/Logo/Okeanus/bg.png'); /* Replace with your background image path */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        font-family: Arial, sans-serif; /* Adjust as per your design */
        color: #000; /* Adjust text color */
        margin: 0;
        padding: 0;
    }

    .container {
        background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background for content */
        padding: 20px;
        margin: 20px auto;
        max-width: 800px; /* Adjust maximum width as per your content */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: add box shadow for printed content */
    }

    .title-container {
        margin-top: 20px; /* Adjust spacing */
        font-size: 24px; /* Adjust title font size */
    }

    .row {
        margin-top: 20px; /* Adjust spacing between rows */
    }

    h6, p {
        margin-bottom: 15px; /* Adjust spacing between paragraphs */
    }

    h6{
        text-indent: 5px;
    }
    p{
        font-size: 16px;
        
    }

    .print-btn {
        display: none; /* Hide print button in printed version */
    }
}
