/*
 * Inline <style> block authored inside the WordPress "Contact Us" page (post 147).
 *
 * IMPORTANT — this reproduces what the live site actually renders, not what the
 * page author wrote. WordPress's `wpautop` filter injected `</p><p>` between the
 * rules *inside* the <style> element, which makes the CSS parser bail after the
 * first rule. Verified on unitedamericasys.com/contact-us/:
 * `styleElement.sheet.cssRules.length === 1` — only `.contact-container` applies,
 * and the three `.contact-section` blocks render completely unstyled (no white
 * card, no padding, no shadow, no `flex: 1 1 300px`).
 *
 * Keeping only that first rule preserves visual parity with the live page. The
 * author's full intent is preserved verbatim below; uncomment it to enable the
 * card styling the page was originally written for.
 */

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: Arial, sans-serif;
  padding: 20px;
  box-sizing: border-box;
  background: #f9f9f9;
  border-radius: 10px;
  max-width: 1200px;
  margin: auto;
}

/* --- Dropped by wpautop on the live site. Uncomment to restore. ---

.contact-section {
  flex: 1 1 300px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.contact-section h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.contact-section p {
  margin: 8px 0;
  color: #555;
}

.contact-form label {
  display: block;
  margin: 10px 0 5px;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

.contact-form button {
  background: #0073aa;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #005d88;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

--- end of rules dropped by wpautop --- */
