    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.4;
      background-color: #f5f7fa;
      color: #333;
    }
    header {
      background: #003366;
      color: white;
      padding: 0 2rem 1rem 2rem;
      text-align: center;
    }
    header h1 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
    header p {
      font-size: 1.2rem;
    }
    nav {
      background: #fff;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      padding: 1rem;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
      flex-wrap: wrap;
    }
    nav a {
      color: #003366;
      text-decoration: none;
      font-weight: 600;
    }
    section {
      padding: 2rem 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .hero {
      background: #eaf0f6;
      text-align: center;
      padding: 1rem .5rem;
      border-radius: 4px;
      margin-bottom: .2rem;
    }
    .hero h2 {
      font-size: 2rem;
      margin-bottom: .5rem;
    }
    .hero p {
      font-size: 1.1rem;
      max-width: 960px;
      margin: 0 auto;
    }
    .virtues-preview, .history-section {
      margin-top: .2rem;
    }
    .virtues-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 1rem;
    }
    .virtue-card {
      background: white;
      padding: 1rem;
      border-radius: 4px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .virtue-card h1 {
      font-size: 1.3rem;
      margin-bottom: 0.4rem;
    }    
    


.py-10 {

      background: white;
      padding: 1.7rem 1.6rem 2.6rem 2.7rem;
      border-radius: 4px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.space-y-1 {
  margin-left: 48px;
}



    
    
    footer {
      background: #003366;
      color: white;
      text-align: center;
      padding: 2rem 1rem;
      margin-top: 3rem;
    }
    @media (max-width: 600px) {
      header h1 {
        font-size: 1.5rem;
      }
      .hero h2 {
        font-size: 1.5rem;
      }
    }