/* ===== CONTACT PAGE STYLES ===== */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background: #00000031; /* Ensures clean background */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.212);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 10px;
  }
}

/* Headings */
h1,
h2 {
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 2.2em;
}

h2 {
  font-size: 1.5em;
}

/* Paragraphs */
p {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
}

/* Form Styles */
form {
  margin-top: 20px;
}

form label {
  font-weight: 500;
  margin-top: 10px;
  display: block;
  color: #333;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

form textarea {
  resize: vertical;
}

/* Contact Information Section */
.contact-info {
  margin-top: 30px;
}

.contact-info p {
  margin: 5px 0;
}

/* Button Row Layout */
.form-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

/* Adjust individual buttons if needed */
.form-buttons .button-30 {
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .form-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .form-buttons .button-30 {
    width: 100%;
    text-align: center;
  }
}
