html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  margin: 0;
  padding: 0;
  background-color: #f9fafb;
}

.contact-content {
  flex: 1;
}

.container {
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

h1 {
  font-family: 'Soria', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #475569;
}

.info-block {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.icon-col {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(204, 93, 2, 0.8);

  border: 2px solid rgba(204, 93, 2, 0.8);
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 1rem;
}

.icon-col:hover {
  background-color: rgb(255, 209, 109);
  color: #ffffff;
  transition: 0.2s ease;
}

.text-col .label {
  font-weight: 600;
  font-size: 1rem;
  color: #1e293b;
}

.text-col .value {
  font-size: 0.95rem;
  color: #64748b;
}

.contact-form .form-box {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: none; /* flat look */
}

.contact-form h2 {
  font-family: 'Soria', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

form input, form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background-color: #f8fafc;
  color: #1e293b;
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background-color: #ffffff;
}

form button {
  padding: 0.75rem 1.5rem;
  border: none;
  background-color: rgba(255, 152, 10, 0.9);
  color: rgb(70, 29, 4);
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

form button:hover {
  background-color: rgb(255, 209, 109);
}
