    body {
      background-color: #f8f9fa;
    }

    .hero-section {
      background-image: 
        linear-gradient(to right, rgba(0, 51, 204, 0.7), rgba(153, 0, 0, 0.7)), 
    url('../img/officials.jpg');
          background-size: cover;
      background-position: center;
      height: 70vh;
      display: flex;
      flex-direction: column;  
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }

    .official-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      padding: 20px;
      text-align: center;
      margin-bottom: 20px;
      width: 200px;
    }

    .official-card:hover {
      transform: translateY(-5px);
    }

    .official-card img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 15px;
    }

    .official-info {
      margin-top: 15px;
    }

    .official-name {
      color: #0033cc;
      font-weight: bold;
      margin-bottom: 5px;
      font-size: 1rem;
    }

    .official-position {
      color: #0033cc;
      font-weight: 600;
      margin-bottom: 5px;
      font-size: 0.9rem;
    }

    .official-committee {
      color: #666;
      font-size: 0.8rem;
      font-style: italic;
    }

    /* Organizational Chart Styles */
    .org-chart {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }

    .org-level {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 20px;
      margin: 20px 0;
      position: relative;
      width: 100%;
    }

    .vertical-connector {
      width: 2px;
      height: 40px;
      background-color: #0033cc;
      margin: 0 auto;
    }

    .horizontal-connector {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 2px;
      background-color: #0033cc;
    }

    .node-connector {
      position: absolute;
      top: -20px;
      left: 50%;
      width: 2px;
      height: 20px;
      background-color: #0033cc;
      transform: translateX(-50%);
    }

    /* Captain specific styling */
    .captain-card {
      width: 220px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .org-level {
        flex-direction: column;
        align-items: center;
      }
      
      .horizontal-connector {
        display: none;
      }
    }
