@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ========================================================================== */
/* EZY MEDICAL RESEARCH - GLOBAL THEME & TYPOGRAPHY SYSTEM                   */
/* ========================================================================== */

:root {
  --ezy-green: #16a34a;
  --ezy-green-light: #eafdef;
  --ezy-green-border: rgba(35, 218, 98, 0.3);
  --ezy-green-accent: #22c55e;
  --ezy-green-dark-accent: #08682b;
  --ezy-green-neon: #39ff14;
  --ezy-dark: #011c15;
  --ezy-dark-bg: #011a14;
  --ezy-dark-surface: #022c22;
  --ezy-slate: #0f172a;
  --ezy-slate-heading: #0f172a;
}

html {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #334155;
}

body {
  overflow-x: hidden;
}

/* Global Container Alignment */
.global-container {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .global-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Global Section Headings & Title Sizes                                      */
/* -------------------------------------------------------------------------- */
.section-title,
.about-title,
.about-hero-title,
.global-section-title,
.section-title-wrapper h1,
.section-title-wrapper h2 {
  font-family: 'Montserrat', 'Inter', sans-serif !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
}

/* Standardized Green Title Accent Bar */
.title-underline-bar {
  width: 4rem;
  height: 0.25rem;
  background-color: var(--ezy-green);
  border-radius: 9999px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
}

.title-underline-bar-left {
  width: 4rem;
  height: 0.25rem;
  background-color: var(--ezy-green);
  border-radius: 9999px;
  margin-top: 0.875rem;
  margin-bottom: 1.25rem;
}

/* -------------------------------------------------------------------------- */
/* Dark Section Theme & Grid Pattern (Strictly Matching Reference Visuals)    */
/* -------------------------------------------------------------------------- */
.dark-grid-section {
  position: relative;
  background: #011108;
  color: #ffffff !important;
  overflow: hidden;
}

/* Dark Green 40px Grid Pattern Overlay */
.dark-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image: linear-gradient(var(--ezy-green-dark-accent) 1px, transparent 1px),
                    linear-gradient(90deg, var(--ezy-green-dark-accent) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Dark Section Pill Badge */
.dark-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background-color: var(--ezy-green-light) !important;
  border: 1px solid #bbf7d0 !important;
  color: #15803d !important;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dark-badge-pill i {
  color: var(--ezy-green);
  font-size: 1rem;
}

/* Subtitle under headings */
.section-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

