.body-contact {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  flex-direction: column;
  min-height: 100vh;
}
/* h1 Contact */
.hContact {
  font-size: 50px;
  font-weight: bold;
  margin-top: calc(var(--headerHeight));
  width: auto;
  display: block;
  text-align: center;
  height: 0%;
}
.hContact::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: var(--goldColor);
  margin-bottom: 0px;
  margin-right: 10px;
}
/* Contect Card */
.contactCard {
  background: var(--mainColor);
  width: 600px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 2.1);
  align-items: center;
  justify-content: center;
}
.row {
  display: flex;
  gap: 20px;
  color: #ffffff;
}
.row input {
  width: 100%;
}
label {
  color: #ffffff;
}
input,
textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 8px;
  padding-bottom: 10px;
  outline: none;
  font-size: 15px;
  background: transparent;
  transition: border-color 0.3s;
  color: #ffffff;
}
input:focus,
textarea:focus {
  border-bottom: 2px solid var(--goldColor);
}
.sendButton {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background: var(--goldColor);
  border: 2px solid var(--goldColor);
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}
.sendButton:hover {
  background-color: #ffffff;
  color: var(--mainColor);
}

@media (max-width: 768px) {
  html,
  body {
    font-size: 14px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
  }
  .body-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 20px 10px;
    box-sizing: border-box;
    background-color: #f5f5f5;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    margin-top: calc(var(--headerHeight) + 10px);
  }
  .contactCard {
    width: 90%;
    padding: 15px;
  }

  .hContact {
    font-size: 30px;
    margin-top: calc(var(--headerHeight));
    margin-bottom: 80px;
  }

  .row {
    flex-direction: column;
    gap: 10px;
  }

  input,
  textarea {
    font-size: 14px;
  }
  .sendButton {
    font-size: 14px;
  }
}
