/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #FEECEC; /* Light red background */
    color: #333;
    margin: 0;
  }
  h1, h2, h3 {
    color: #F44336; /* Primary red color */
  }
  a {
    text-decoration: none;
    color: #F44336;
    font-weight: bold;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  header {
    background-color: #F44336; /* Deep red */
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  header h1 {
    font-size: 2.5rem;
  }

  /* Section Styles */
  .about-section, .mission-section, .team-section, .contact-section {
    margin: 40px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .about-section h2, .mission-section h2, .team-section h2, .contact-section h2 {
    border-bottom: 3px solid #F44336;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
  .about-section p, .mission-section p, .team-section p {
    font-size: 1rem;
    margin-top: 10px;
  }

  /* Team Section */
  .team {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .team-member {
    flex: 1 1 calc(33% - 40px);
    background-color: #FCE4E4;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  .team-member h3 {
    margin-bottom: 10px;
  }

  /* Footer Contact Section */
  .contact-section {
    text-align: center;
  }
  .contact-section a {
    display: inline-block;
    margin: 10px 0;
    font-size: 1rem;
    padding: 10px 20px;
    background-color: #F44336;
    color: #fff;
    border-radius: 5px;
    transition: 0.3s;
  }
  .contact-section a:hover {
    background-color: #D32F2F; /* Darker red */
  }
  .text-12 {
      color: #FCE4E4;
  }}