
  
/* 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;
  }
    
  
/* Main section */
.main-sdg-section {
    padding: 30px 18px;
    max-width: 1200px;
    margin: 0 auto 40px;
  }
  .main-sdg-section h2 {
    color: #0a57b7;
    text-align: center;
    margin-bottom: 8px;
  }
  .main-sdg-section .lead {
    text-align: center;
    color: #444;
    margin-bottom: 18px;
  }
  
  /* Grid */
  .council-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
  }
  
  /* Card */
  .council-card {
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
    border: 1px solid #e1eefc;
    box-shadow: 0 6px 18px rgba(10, 60, 120, 0.06);
    transition: transform 0.18s ease;
  }
  .council-card:hover { transform: translateY(-4px); }
  
  /* Toggle header */
  .council-card h3.council-toggle {
    margin: 0;
    padding: 14px 16px;
    font-size: 1.05rem;
    color: #ffffff;
    background: #0a57b7;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* plus/minus icon using ::after */
  .council-card h3.council-toggle::after {
    content: '+';
    font-size: 1.4rem;
    line-height: 1;
    margin-left: 10px;
  }
  .council-card.active h3.council-toggle::after {
    content: '−';
  }
  
  /* Content (collapsed by default) */
  .council-content {
    background: #fff;
    padding: 0 16px;           /* collapsed has no vertical padding */
    max-height: 0;             /* hidden */
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(.2,.8,.2,1), padding 0.25s ease;
    box-sizing: border-box;
  }
  
  /* When card has .active we add vertical padding via script by setting style,
     but ensuring default padding changes won't break layout */
  .council-card.active .council-content {
    padding: 14px 16px;
  }
  
  /* content list styling */
  .council-content ul { margin: 0; padding-left: 18px; color: #333; }
  .council-content ul li { margin: 6px 0; line-height: 1.55; }
  
  /* Nested UL */
  .council-content ul ul { list-style-type: circle; padding-left: 18px; }
  
  /* Responsive tweaks */
  @media (max-width: 900px) {
    .council-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .council-grid { grid-template-columns: 1fr; }
  }

  
  
  /* Cross-Cutting Supporting Cells Section */
  .cross-cutting-section {
    background: #e0f2f1;
    padding: 40px 20px;
    text-align: center;
  }
  
  .cross-cutting-section .section-heading h2 {
    font-size: 1.7rem;
    color: #0a57b7;
    margin-bottom: 10px;
  }
  
  .cross-cutting-section .section-heading p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
  }
  
  .cross-cutting-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left;
  }
  
  .cross-cutting-card ul {
    list-style-type: disc;
    padding-left: 30px;
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .cross-cutting-card ul li {
    margin-bottom: 12px;
  }
  
/* Comprehensive SDG Coverage Section */
.comprehensive-sdg-section {
    background: #f0f8ff;
    padding: 40px 20px;
    text-align: center;
  }
  
  .comprehensive-sdg-section .section-heading h2 {
    font-size: 1.7rem;
    color: #0a57b7;
    margin-bottom: 10px;
  }
  
  .comprehensive-sdg-section .section-heading p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
  }
  
  /* SDG Cards Grid */
  .sdg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .sdg-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .sdg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }
  
  .sdg-card h3 {
    font-size: 1.5rem;
    color: #0a57b7;
    margin-bottom: 10px;
  }
  
  .sdg-card p {
    font-size: 1rem;
    color: #333;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .sdg-grid {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
  
    .sdg-card h3 {
      font-size: 1.2rem;
    }
  
    .sdg-card p {
      font-size: 0.95rem;
    }
  }
  
  
