@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400&family=Montserrat:wght@500;700&display=swap");

* {
  margin: 0%;
  padding: 0%;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
}


/* Inquiry Form Section Styles */
body {
  background-color: #ffffff; /* White background */
  color: #000000; /* Black content */
  font-family:Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.inquiry-form-dev {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 100px 0;
}

.inquiry-form-section {
  background-color: #ffffff;
  padding: 30px;
  width: 100%;
  max-width: 1000px;
}

.logo-section img {
  display: block;
  max-width: 200px;
  margin: 0 auto 20px;
}

#inquiry-form-main {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.inquiry-form-section p {
  text-align: center;
  margin-bottom: 20px;
}

.inquiry-form a {
  color: #000000;
  text-decoration: none;
  font-weight: normal;
}

.inquiry-form a:hover {
  text-decoration: underline;
}

.form-group, .form-group-types {
  margin-bottom: 20px;
}
.form-groups ul{
  display: flex;
  justify-content: space-between;
}
.form-groups ul li{
  list-style: none;
}
label {
  display: block;
  font-weight: normal;
  margin-bottom: 5px;
}

#form-label{
  padding: 10px 0;
}
.checkbox-groups .membership-type{
  padding-left: 50px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  all: unset;
  width: 100%;
  padding: 10px;
  margin-top: 0px;
  border-bottom: 1px solid #000;
  font-size: 14px;
}
textarea{
  width: 100%;
  padding: 5px;
  height: auto;
  border-radius: 5px;
}
input:focus,
textarea:focus {
  outline: none; /* Removes default focus outline */
  border-color: #000000; /* Adds a custom focus style */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.checkbox-groups,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-groups label,
.checkbox-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

input[type="checkbox"],input[type="radio"] {
  margin-right: 5px;
}



.submit-button {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #444444;
}



@media screen and (max-width: 768px) {
  
  .form-group-types ul li{
    padding-right: 0px;
  }

  .form-group-types ul{
    align-items:normal;
    display: block;
    text-align: center;
  }
  .checkbox-group {
    display: block;
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 10%;
    padding-bottom: 50px;
  }
  input[type="tel"] {
    width: 50%; 
  }
  .logo-section img {
    height: 140px;
  }
  
}

@media screen and (max-width: 564px) {
  
  .form-group-types ul li{
    padding-right: 0px;
  }

  .form-group-types ul{
    align-items:normal;
    display: block;
    text-align: center;
  }
  .checkbox-group {
    display: block;
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 10%;
    padding-bottom: 50px;
  }
  input[type="tel"] {
    width: 50%; 
  }
  .logo-section img {
    height: 125px;
  }
  
}

@media screen and (max-width: 480px) {
  .menu-icon img {
    height: 20px; /* Adjust the size as needed */
    width: auto; /* Maintain the aspect ratio */
    cursor: pointer; /* Pointer cursor for better UX */
    display: block;
    margin-right: 0%;
    padding: 0%;
  }
  .logo {
    margin-left: 10px;
    padding: 0%;
    width: auto;
  }
  .form-group-types ul li{
    padding-right: 0px;
  }

  .form-group-types ul{
    align-items:normal;
    display: block;
    text-align: center;
  }
  .checkbox-group {
    display: block;
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 10%;
    padding-bottom: 50px;
  }
  input[type="tel"] {
    width: 50%; 
  }
  .logo-section img {
    height: 110px;
  }
  
}
