  /* Reset and base styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
  }
  
  /* Add margin to account for sticky header */
  main {
    margin-top: 80px;
  }
  
  /* Container for consistent content width */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Apply container to component content */
  hero-section .hero,
  about-section .about-container,
  services-section .services-container,
  contact-form .contact-container,
  footer-section .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Section dividers */
  .section-divider {
    height: 1px;
    background-color: #E0E0E0;
    margin: 0;
  }
  
  /* Focus styles for accessibility */
  *:focus {
    outline: 2px solid #2A9D8F;
    outline-offset: 2px;
  }
  
  /* Screen reader only content */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
.captcha-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.captcha-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.captcha-row .g-recaptcha {
    flex: 1;
}

.captcha-row button {
    flex-shrink: 0;
    margin-top: 0;
}

.captcha-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.captcha-error.show {
    display: block;
}

/* Loading Spinner */
.spinner-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.spinner-container.show {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #9b87f5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
