/* ============================================
   HOMEPAGE - ALL SECTIONS STYLES
   ============================================ */

/* Theme Variables */
:root {
  --primary: #17538F;
  --primary-dark: #104272;
  --secondary: #3AB8AE;
  --secondary-dark: #2a8a82;
  --light-bg: #f5f9fc;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================
   GLOBAL MOBILE FIX - PREVENT RIGHT OVERFLOW
   ============================================ */
body,
html {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Fix all sections to prevent overflow */
body > *,
.site-content > *,
section,
div[class*="section"],
.container,
.row {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Global container centering */
.container,
.container-fluid,
section {
  margin-left: auto !important;
  margin-right: auto !important;
}
