/* General Styles */
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Content wrapper to push footer to bottom */
  .content {
    flex: 1;
  }
  
  /* Header Styles */
  header {
    background: #4a90e2;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  header h1 {
    margin: 0;
    font-size: 2.5rem;
  }
  
  header p {
    font-size: 1.2rem;
  }
  
  /* Navigation Styles */
  nav {
    display: flex;
    justify-content: center;
    padding: 0.5rem;
    background: #333;
  }
  
  nav a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 600;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  /* Section Styles */
  section {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about {
    background: #fff;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Footer Styles */
  footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: white;
    font-size: 0.9rem;
    margin-top: auto;
  }

  .belief-subsection {
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
  }
  
  .belief-subsection h2 {
    color: #333;
    font-weight: 800;
  }
  
  .belief-subsection p {
    margin-top: 0.5rem;
    color: #555;
    line-height: 1.6;
  }
  
  