/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
  }
  
  h1, h2, h3 {
    color: #333;
    text-align: center;
  }
  
  /* Navigation Styles */
  header {
    background-color: #921C3D;
    padding: 10px 0;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .logo h1 {
    color: #fff;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ffde00;
  }
  
  /* About Us Section */
  .about-us {
    background-color: #fff;
    padding: 50px;
    margin: 50px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .about-us p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
  }
  
  /* Our Mission Section */
  .our-mission {
    background-color: #f0f0f0;
    padding: 50px;
    margin: 50px auto;
    max-width: 800px;
    border-radius: 10px;
  }
  
  .our-mission p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
  }
  
  /* Our Core Values Section */
  .our-values {
    padding: 50px;
    background-color: #fff;
    margin: 50px auto;
    max-width: 1000px;
  }
  
  .values-content {
    display: flex;
    justify-content: space-around;
  }
  
  .card {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 30%;
    text-align: center;
  }
  
  .card p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* Footer Styles */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
  }
  
  footer p {
    margin: 0;
  }
  