/* Styling Form and Contact information */
.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin: 1rem;
  }
  
  .form {
    background-color: #C7C8B9;
    box-sizing: border-box;
    border-radius: 0.25rem;
  }
  .form iframe {
    width: 100%;
    height: 100%;
    padding-top: 25px;
  }
  .row2 iframe {
    width: 100%;
    height: 350px;
  }
  .row3 img {
    width: 100%;
    border-radius: 0.25rem;
  }
  .row1 ul {
    list-style-type: none;
    margin-left: 10px;
  }
  .row1 li {
    align-items: center;
    display: flex;
    margin-bottom: 10px;
    font-size: 17px;
    color: #315447;
  }
  .contactinformation {
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-sizing: border-box;
  }
  
  
  @media (max-width: 767px) {
    .contact-container {
      grid-template-columns: 1fr; /* Single column for small screens */
    }
    .form iframe {
      padding-top: 15px;
      height: 600px;
    }
    .row2 iframe {
      height: 300px;
    }
  }
/* Styling Regular */
h1 {
    font-family: 'Merriweather', serif;
    font-size: 50px;
    color: #315447;
    text-align: center;
    margin: 40px;
    font-weight: bolder;
}
h2 {
    font-size: 21px;
    font-family: 'Merriweather', serif;
    background-color: #315447;
    color: #FCFAF5;
    text-align: center;
    border-radius: 0.25rem;
    margin-bottom: 15px;
    padding: 8px;
 }
/* Responsive Styles Titles */
@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
    text-align: center;  
  }
}
small {
  padding: 0px 10px 0px 10px;
}

