/* ==========================================================================
   1. GLOBAL RESET & BASE TYPOGRAPHY
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #2b2b2b;
  background-color: #f8f9fa;
  line-height: 1.6;
}

/* Centered Content Wrapper */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Helper Class for Centered Text */
.text-center {
  text-align: center;
}

/* ==========================================================================
   2. HEADER & LOGO
   ========================================================================== */
.header {
  padding: 24px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.logo {
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero {
  padding: 48px 0 32px 0;
}

.hero-title {
  font-size: 2.2rem;
  color: #1a202c;
  margin-bottom: 16px;
  line-height: 1.25;
}

.hero-subtext {
  font-size: 1.15rem;
  color: #4a5568;
  margin: 0 auto 28px auto;
  max-width: 600px;
}

/* ==========================================================================
   4. BUTTONS (CTA & FORM SUBMIT)
   ========================================================================== */
.cta-button,
.submit-button {
  display: inline-block;
  padding: 12px 32px;
  background-color: #0056b3;
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #0056b3;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cta-button:hover,
.submit-button:hover {
  background-color: #003d80;
  border-color: #003d80;
  color: #ffffff !important;
}

/* ==========================================================================
   5. SERVICES & ACCENT BARS
   ========================================================================== */
.services {
  padding: 32px 0;
}

.section-title {
  font-size: 1.75rem;
  color: #1a202c;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.service-item {
  font-size: 1.05rem;
  font-weight: 500;
  color: #2d3748;
  background-color: #ffffff;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  
  /* Solid Blue Accent Bar on Left */
  border-left: 5px solid #0056b3;
  text-align: left;
}

/* ==========================================================================
   6. CONTACT FORM, INPUTS & TURNSTILE
   ========================================================================== */
.contact-section {
  padding: 32px 0 60px 0;
}

.contact-form {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2d3748;
}

.form-group label .required {
  color: #e53e3e;
}

.form-group label .optional {
  font-weight: normal;
  font-size: 0.875rem;
  color: #718096;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0056b3;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
}

/* Turnstile Widget Centering */
.turnstile-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

/* Mobile Responsiveness Adjustments */
@media (max-width: 600px) {
  .hero-title {
    font-size: 1.75rem;
  }
  .contact-form {
    padding: 20px;
  }
}