/* Target the PDF.js container element */
  #pdf-viewer-container {
    /* Set a base height, as 100vh can be too tall on some mobile viewports */
    min-height: 80vh !important;
  }

  /* General section padding adjustments */
  section {
    padding-top: 20px !important;
    padding-bottom: 40px !important;
  }

  /* Responsive height adjustments for the container */
  @media (max-width: 1024px) {
    #pdf-viewer-container { min-height: 700px !important; }
  }

  @media (max-width: 768px) {
    #pdf-viewer-container { min-height: 600px !important; }
  }

  @media (max-width: 480px) {
    #pdf-viewer-container { min-height: 450px !important; }
  }
  
 
/* Wrapper */
.policy-wrapper {
    max-width: 1100px;
    margin: 50px auto;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 46, 19, 0.08);
}

/* Image Section */
.policy-image {
    width: 40%;
    background: linear-gradient(
        rgba(0, 46, 19, 0.85),
        rgba(0, 46, 19, 0.85)
    ),
    url('/img/Afrc.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Image Text */
.image-text h1 {
    color: #ffffff;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.image-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Content Section */
.policy-content {
    width: 60%;
    padding: 45px;
}

/* Headings */
.policy-content h2 {
    color: #002e13;
    margin-bottom: 18px;
    font-weight: 600;
}

/* Paragraphs */
.policy-content p {
    line-height: 1.75;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: inherit;
}

/* Highlight Box */
.policy-content .highlight {
    margin-top: 22px;
    padding-left: 16px;
    border-left: 3px solid #002e13;
    color: #002e13;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-wrapper {
        flex-direction: column;
    }

    .policy-image,
    .policy-content {
        width: 100%;
    }

    .policy-content {
        padding: 28px;
    }
}
