/* Global Styles */
/* ... (other styles remain unchanged) */
/* Global Styles */
/* ... (other styles remain unchanged) */

/* Media query for smaller screens (mobile devices) */
@media (max-width: 768px) {
    .mascot-image {
      display: none; /* Hide mascot image on smaller screens */
      width: 0; /* Optionally, set width to 0 for further assurance */
      padding: 0; /* Optionally, reset padding */
    }
  
    .contact-container {
      flex-direction: column; /* Change flex-direction to stack elements vertically */
      align-items: center; /* Align items to center horizontally */
    }

    .contact-form {
    padding-left: 90px;
    
    }
  
    input[type="text"],
    input[type="email"],
    textarea {
      width: 100%;
    }

    .social-media {
        padding-top: 50px;
        text-align: center;
        padding-bottom: 5px;
      }

    h3 {
        font-size: smaller;
    }

    p {
        font-size: ;
    }
  }
  

  
  
/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #fff1e8;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Form Styles */
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    width: calc(100% - 16px);
    padding: 8px;
    border-radius: 4px;
    border: 1.5px solid #000000;
    background-color: #fff1e8;
    margin-bottom: 10px;
    box-sizing: border-box;
  }
  
  textarea {
    resize: vertical;
  }
  
  button[type="submit"] {
    padding: 10px 20px;
    background-color: #9e8fb2;
    color: #fff1e8;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #337357;
  }
  
  /* Social Media Section Styles */
  .social-media {
    margin-top: 0px;
    text-align: center;
    padding-bottom: 145px;
  }
  
  .social-icons {
    margin-bottom:0px;
    padding-bottom: 0px;
  }
  
  .social-icons a {
    margin: 0 10px;
  }
  
  .social-icons img {
    width: 40px;
    height: 40px;
  }
  
  /* Contact Container and Mascot Image */
  .contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 700px; /* Adjust the max-width as needed */
    margin: 0 auto;
    padding: 15px;
  }
  
  .contact-form {
    width: 60%; /* Adjust the width of the form container */
  }
  
  .mascot-image {
    width: 44%; /* Adjust the width of the mascot image container */
    text-align: center;
    padding-left: 50px;
    padding-top: 25px;
  }
  
  .mascot-image img {
    max-width: 100%;
    height: auto;
  }

  p {
color: #9e8fb2;

  }
  