/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #414042;
  line-height: 1.5;
  background-color: #fff;
}

/* Logo */
img {
  max-width: 100%;
  height: auto;
}

/* H1 for SEO (hidden) */
h1 {
  display: none;
}

/* Table Layout Styling */
table {
  width: 100%;
  border-collapse: collapse;
}

/* Headline Text */
strong {
  display: block;
}

/* Contact Form */
form {
  margin-top: 20px;
  max-width: 500px;
  width: 100%;
}

form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px; /* space below row */
}

form .form-row input {
  flex: 1;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  form .form-row {
    flex-direction: column;
  }

  form .form-row input,
  form .form-row button {
    margin-bottom: 15px;
    width: 100%;
  }
}

/* Name & Email inputs */
form input[type="text"],
form input[type="email"] {
  padding: 10px 15px;
  background: #fff;
  border: 1px solid #eaeaea;
  color: #414042;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

form input::placeholder {
  color: #414042;
}

/* Message textarea */
form textarea {
  width: 100%;
  min-height: 120px;
  background: #fff;
  border: 1px solid #eaeaea;
  color: #414042;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
  padding: 10px 15px;
}

form textarea::placeholder {
  color: #414042;
}

/* Button Styling */
form button {
  display: inline-block;
  padding: 20px 0;
  width: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  background: #000;
  color: #fff;
}

/* Form Messages */
.message {
  margin-top: 10px;
  font-size: 14px;
}

.message.success {
  color: #0B7E0C;
}

.message.error {
  color: #f00;
}

/* Footer */
td[style*="background-color: #111"] {
  text-align: center;
  padding: 40px 0;
  font-size: 12px;
  color: #fff;
}
