/* General Styles */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  a {
    color: #333;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    margin-left: 42%;

  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header Styles */
  header {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  nav li {
    display: inline-block;
    margin-right: 20px;
  }
  
  nav li:last-child {
    margin-right: 0;
  }
  
  nav a {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 0;
  }
  
  .logo img {
    max-height: 100px;
  }
  
  /* Contact Form Styles */
  form {
    display: flex;
    flex-direction: column;
    
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    margin-left: 25%;

  }
  
  input,
  textarea {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 4px;
    width: 50%;
    box-sizing: border-box;
    align-items: center;
    margin-left: 25%;
  }
  
  textarea {
    resize: vertical;
  }
  
  button[type="submit"] {
    background-color: black;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px;
    width: 50%;
    margin-left: 25%;

  }
  
  button[type="submit"]:hover {
    background-color: #717272;
  }
  
  /* Footer Styles */
  footer {
    background-color: black;
    padding: 20px 0;
    text-align: center;
    margin-top: 100px;
    color: white;
  }
  
  footer p {
    font-size: 0.8rem;
    margin: 0;
  }
  
  main {
    flex-grow: 1;
    margin-top: 200px;
  }

 /* General Styles */

/* Existing styles... */

/* Header Styles */

/* Existing styles... */

/* Contact Form Styles */

/* Existing styles... */

/* Footer Styles */

/* Existing styles... */

/* Responsive Styles */

/* Mobile Devices (up to 600px) */
@media only screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }

  /* Example: Adjusting the font size for smaller screens */
  h2 {
    font-size: 1.5rem;
  }

  /* Example: Adjusting the padding and font size for smaller screens */
  .container {
    padding: 0 10px;
  }

  /* Example: Adjusting the margin for smaller screens */
  main {
    margin-top: 150px;
  }

  /* Example: Adjusting the font size and margin for smaller screens */
  label {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  /* Example: Adjusting the font size and padding for smaller screens */
  input,
  textarea {
    font-size: 0.9rem;
    padding: 8px;
  }

  /* Example: Adjusting the font size and padding for smaller screens */
  button[type="submit"] {
    font-size: 0.9rem;
    padding: 8px;
  }

  /* Add more responsive styles as needed for different elements and sections */
}

