
  
/* Hero Section */
.hero {
    background: #cce0ff;
    padding: 30px 20px;
    text-align: center;
  }
    
  
  .hero h1 {
    font-size: 28px;
    color: #004080;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 16px;
    color: #333;
  }
    
  
  /* Objectives Section */
  .objectives-section {
    padding: 30px 20px;
    background: #f4f6f8;
  }
  
  .objectives-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 20px;
  }
  
  .objective-card {
    background: #f9fafc;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .objective-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  }
  
  .objective-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #004d40;
    margin-bottom: 12px;
  }
  
  .objective-card p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    color: #333;
  }
  
  /* Ancillary Section */
  .ancillary-section {
    width: 100%;
    padding: 30px 20px;
    background: #f4f6f8;
  }
  
  .ancillary-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .ancillary-heading {
    text-align: center;
    color: #0a57b7;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .ancillary-cards {
    display: grid;
    grid-template-columns: 1fr; /* full width cards */
    gap: 20px;
    width: 100%;
  }
  
  .ancillary-cards .cell {
    width: 100%;
    background: #f9fafc;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .ancillary-cards .cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  }
  
  .ancillary-cards h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #004d40;
    margin-bottom: 12px;
  }
  
  .ancillary-cards p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    color: #333;
  }
  
  /* Footer */
  .footer {
    background: #0a57b7;
    color: #fff;
    padding: 30px 20px;
  }
  
  .footer a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
  }
  