
* {
  box-sizing: border-box;
}

body {
  background-color: #C28285;
  margin: 0; 
  font-family: 'Poppins', sans-serif;
}


.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 15px;
}


.site-header {
  display: flex;
  align-items: center;
  width: 100%;
}

.logo-container {
  max-width: 160px;
  margin-right: 20px;
}

.logo {
  width: 100%;
  height: auto;
}

.header-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-title {
  font-size: 50px;
  color: white;
  margin: 0;
  text-align: center;
}


.site-main {
  flex: 1; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #7E0845;
  padding: 20px;
  flex-wrap: wrap; 
}


.image-container {
  flex: 1;
  margin: 20px;
  min-width: 300px;
  max-width: 500px;
}

.contact-image {
  width: 100%;
  height: auto;
  border: 5px solid white;
}

.form-container {
  flex: 1;
  margin: 20px;
  min-width: 300px;
}


form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-field {
  width: 100%;
  margin: 15px 0;
}

label {
  font-size: 30px;
  font-weight: bold;
  color: white;
  display: block;
  margin-bottom: 10px;
}

.input-field {
  width: 100%;
  max-width: 300px; 
  padding: 8px;
  background-color: #D9D9D9;
  border: none;
  font-size: 16px;
  margin: 0 auto; 
}

.button-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.submit-button {
  background-color: #4A0223; 
  border: 1px solid white;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
}

.submit-button:hover {
  transform: scale(1.1);
}


.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #7E0845;
  padding: 10px 20px; 
}

.footer-heading {
  font-size: 25px;
  color: white;
  margin: 0;
}

.social-icons {
  display: flex;
}

.social-icon {
  padding-left: 14px;
}

@media (min-width: 969px) {
  .form-field {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .form-field label {
    width: 350px; 
    margin-bottom: 0; 
  }
  .input-field {
    flex: 1; 
  }
}

@media all and (max-width: 800px) {
  .page-title {
    font-size: 36px;
  }
  label {
    font-size: 20px;
  }
  .site-main {
    margin: 20px 0;
  }
  .contact-section {
    flex-direction: column;
    align-items: center;
  }
  .image-container,
  .form-container {
    margin: 10px;
    width: 90%;
  }
  .submit-button {
    width: 150px;
  }
}

@media all and (max-width: 500px) {
  .page-title {
    font-size: 26px;
  }
  label {
    font-size: 18px;
  }
  .image-container {
    max-width: 300px;
  }
  .submit-button {
    width: 120px;
  }
}

@media all and (max-width: 280px) {
  .logo-container {
    max-width: 100px;
  }
  .page-title {
    font-size: 20px;
  }
}
