 .resource-hero-container {
      background-color: #e7f1f9;
      width: 100%;
      padding: 80px 0;
    }

    .resource-hero {
      width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
    }
	
	.resource-hero-image img {width:260px;}

    .resource-hero-text h2 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 16px;
    }

    .resource-hero-text p {
      font-size: 16px;
      color: #333;
    }

    .resource-table-section {
      width: 1200px;
      margin: 60px auto;
    }

    .resource-table-section h2 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .resource-table {
      width: 100%;
      border-collapse: collapse;
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .resource-table thead {
      background-color: #fff; border-bottom: 2px solid #274d98;
    }

    .resource-table th,
    .resource-table td {
      padding: 16px;
      text-align: center;
      border-bottom: 1px solid #e0e0e0;
      font-size: 14px;
    }

    .resource-download-btn {
      display: inline-block;
      padding: 6px 16px;
      font-size: 13px;
      background-color: #2b6678;
      color: #fff;
      border-radius: 999px;
      text-decoration: none;
    }

    .resource-pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
    }

    .resource-pagination a {
      display: inline-block;
      width: 32px;
      height: 32px;
      line-height: 32px;
      text-align: center;
    
      text-decoration: none;
      color: #8c8c8c;
    }

    .resource-pagination a.active {
     
      color: #8c8c8c;
   
    }
	
	  .download-popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: none; justify-content: center; align-items: center; z-index: 9999; }
    .download-popup { background: #fcfdff; padding: 30px 0px 0px; border-radius: 8px; width: 800px; max-width: 95%; position: relative; }
    .download-popup h3 {    border-bottom: 2px solid #274d98;  font-size: 20px;  padding: 0px 30px 20px; }
    .download-popup input, .download-popup select, .download-popup textarea { width: 100%; padding: 10px; margin-bottom: 12px; border: 1px solid #ccc; border-radius: 14px; font-size: 14px; }
    .download-popup label { font-weight: 400; display: block; margin-bottom: 4px; }
    .download-popup .consent { font-size: 13px; color: #444; margin-bottom: 6px; }
    .download-popup .popup-close { position: absolute; top: 16px; right: 16px; cursor: pointer; font-size: 18px; }
    .popup-submit-btn { background: #000; color: #fff; padding: 10px 20px; border: none; border-radius: 20px; font-size: 15px; cursor: pointer; width: 200px; }
	#downloadRequestForm {padding-top:20px; padding: 30px;}
	.pop_div {display: flex; gap: 20px;     margin-bottom: 10px;}
	.flex {padding-left:20px;}
	.popup-submit-div {display: flex; justify-content: center; padding: 30px 0px 0px;}
	
	
	@media (max-width: 1200px) {
  .resource-hero,
  .resource-table-section {
    width: 90%;
  }

  .download-popup {
    width: 90%;
  }
}

/* Tablets / Small laptops (¡Â 992px) */
@media (max-width: 992px) {
  .resource-hero {
    gap: 30px;
  }

  .resource-hero-text h2 {
    font-size: 24px;
  }

  .resource-hero-text p {
    font-size: 15px;
  }

  .resource-table-section h2 {
    font-size: 22px;
  }

  .pop_div {
    flex-direction: column;
  }

  .flex {
    padding-left: 0;
  }
}

/* Mobile (¡Â 767px) */
@media (max-width: 767px) {
  .resource-hero {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .resource-hero-image img {
    width: 180px;
  }

  .resource-hero-container {
    padding: 60px 16px;
  }

  .resource-hero-text h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .resource-hero-text p {
    font-size: 14px;
  }

  .resource-table-section {
    width: 100%;
    margin: 40px 0;
    padding: 0 16px;
    overflow-x: auto; /* Allow horizontal scroll if table is wider */
  }

  .resource-table th,
  .resource-table td {
    padding: 12px;
    font-size: 13px;
  }

  .resource-pagination {
    margin-top: 24px;
  }

  .resource-pagination a {
    width: 28px;
    height: 28px;
    line-height: 28px;
  }

  .download-popup {
    width: 95%;
    padding: 20px 0 0;
  }

  .download-popup h3 {
    font-size: 18px;
    padding: 0 20px 16px;
  }

  #downloadRequestForm {
    padding: 20px;
  }

  .popup-submit-btn {
    width: 100%;
  }
}

/* Very small devices (¡Â 480px) */
@media (max-width: 480px) {
  .resource-hero-text h2 {
    font-size: 20px;
  }

  .resource-hero-text p {
    font-size: 13px;
  }

  .resource-download-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .resource-table-section h2 {
    font-size: 20px;
  }

  .download-popup input,
  .download-popup select,
  .download-popup textarea {
    font-size: 13px;
  }
}