/* Scholarships Page Styles */

/* General Section Styling */
.scholarships-section {
    max-width: 80%;
    margin: 0 auto;
    padding: 40px 20px;
    color: #333;
    line-height: 1.6;
  }
  
  .scholarships-section h1 {
    font-size: 2.5rem;
    color: #1347a6; /* Match the brand's color scheme */
    text-align: center;
    margin-bottom: 20px;
  }
  
  .scholarships-section h2 {
    font-size: 2rem;
    color: #1347a6;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  
  .scholarships-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .scholarships-section strong {
    color: #000;
    font-weight: bold;
  }
  
  .scholarships-section em {
    font-style: italic;
    color: #555;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .scholarships-section {
      padding: 20px;
    }
  
    .scholarships-section h1 {
      font-size: 2rem;
    }
  
    .scholarships-section h2 {
      font-size: 1.6rem;
    }
  
    .scholarships-section p {
      font-size: 1rem;
    }
  }
  