/* General Styles */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    font-family: 'Helvetica', sans-serif;
  }
  
  a {
    text-decoration: none;
    color: #007BFF;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Main Content */
  .main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
  }
  
  /* Hero Section */
  .hero-section {
    background-color: #1e3a8a;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    height: 100px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    background-color: #f59e0b; /* Yellow */
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .cta-button:hover {
    background-color: #d97706; /* Darker Yellow */
  }
  
  /* Info Section */
  .info-section {
    padding: 2rem 0;
  }
  
  .info-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e3a8a; /* Blue */
    text-align: center;
  }
  
  .info-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .chairman-picture img {
    width: 300px;
    height: auto;
    border-radius: 8px;
  }
  
  .info-text {
    flex: 1;
  }
  
  .info-text p {
    margin: 0.5rem 0;
  }
  
  .info-text ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
  }
  
  .info-text ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Call to Action Section */
  .cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #1e3a8a; /* Blue */
    color: white;
    margin-top: 2rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1.25rem;
    }
  
    .info-content {
      flex-direction: column;
      align-items: center;
    }
  
    .chairman-picture img {
      width: 100%;
      max-width: 300px;
    }
  
    .info-section h2 {
      font-size: 1.75rem;
    }
  }