<style>
#hs_cos_wrapper_ .secspace 
  {
    ;
    {% if module.style.select_background_type == 'color' %}
    background-color:;

    {% elif module.style.select_background_type == 'image' %}
    background-image: url();
    background-size: cover; background-position: center center; background-repeat: no-repeat;
    {% endif %}


  }

  @media(max-width:991px){
    #hs_cos_wrapper_ .secspace  { ; }
  }
  @media(max-width:767px){
    #hs_cos_wrapper_ .secspace  { ; }
  }

  /* Container styling to match other modules */
  .charter-objectives-section {
    width: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  /* Content wrapper - this matches the structure from your other module */
  .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .charter-objectives-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
  }
  
  .charter-objectives-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0a1f44;
    text-align: center;
  }
  
  .subtitle {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    color: #464c5f;
    text-align: center;
  }
  
  .charter-objectives-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    width: 100%;
  }
  
  .table-header {
    display: grid;
    grid-template-columns: 100px minmax(150px, 1fr) minmax(250px, 1.5fr) minmax(250px, 1.5fr);
    background-color: #0a1f44;
    color: white;
    font-weight: 600;
    padding: 16px;
  }
  
  .header-cell {
    padding: 12px 16px;
    font-size: 18px;
  }
  
  .table-row {
    display: grid;
    grid-template-columns: 100px minmax(150px, 1fr) minmax(250px, 1.5fr) minmax(250px, 1.5fr);
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
  }
  
  .table-row:last-child {
    border-bottom: none;
  }
  
  .cell {
    padding: 24px 16px;
    font-size: 16px;
  }
  
  .cell-icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .objective-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
  
  .cell-objective {
    font-weight: 600;
    color: #0a1f44;
  }
  
  .objective-title {
    font-size: 18px;
  }
  
  /* Responsive styling */
  @media (max-width: 991px) {
    .table-header, 
    .table-row {
      grid-template-columns: 80px minmax(120px, 1fr) minmax(180px, 1.5fr) minmax(180px, 1.5fr);
    }
    
    .cell, .header-cell {
      padding: 16px 12px;
    }
    
    .objective-icon {
      width: 40px;
      height: 40px;
    }
  }
  
  @media (max-width: 767px) {
    .table-header {
      display: none;
    }
    
    .table-row {
      grid-template-columns: 1fr;
      padding: 20px 16px;
    }
    
    .cell {
      padding: 8px 0;
    }
    
    .cell-icon {
      justify-content: flex-start;
      margin-bottom: 8px;
    }
    
    .cell-objective {
      margin-bottom: 12px;
    }
    
    .cell-action:before {
      content: "Example of Action:";
      display: block;
      font-weight: 600;
      margin-bottom: 4px;
      color: #0a1f44;
    }
    
    .cell-outcome:before {
      content: "Intended Outcome:";
      display: block;
      font-weight: 600;
      margin-bottom: 4px;
      color: #0a1f44;
    }
  }
</style>