/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: rgb(21, 15, 69);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
  }
  
  .container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    box-sizing: border-box;
  }
  
  /* Logo */
  .logo {
    margin-top: 20px;
  }
  
  .logo img {
    max-width: 150px;
    height: auto;
  }
  
  /* Main Content */
  .main-content h1 {
    font-size: 2.5rem;
    margin: 20px 0 10px;
    color: rgb(21, 15, 69);
  }
  
  .subtext {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  /* Contact Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  .contact-form textarea {
    resize: vertical;
  }
  
  .contact-form button {
    background-color: rgb(21, 15, 69);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: rgb(198, 18, 18);
  }
  
  /* About Us Section */
  .about-us {
    /* background-color: rgba(21, 15, 69, 0.1); */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
  }
  
  .about-us h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: rgb(21, 15, 69);
  }
  
  .about-us p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Social Links */
  .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .social-links a {
    color: rgb(21, 15, 69);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
  
  .social-links a:hover {
    color: rgb(198, 18, 18);
    font-size: 2rem;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    .main-content h1 {
      font-size: 2rem;
    }
  
    .subtext {
      font-size: 1rem;
    }
  
    .contact-form input,
    .contact-form textarea {
      font-size: 0.9rem;
    }
  
    .contact-form button {
      padding: 12px;
      font-size: 0.9rem;
    }
  
    .about-us h2 {
      font-size: 1.5rem;
    }
  
    .about-us p {
      font-size: 0.9rem;
    }
  
    .social-links a {
      font-size: 1.2rem;
    }
  }