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

:root {
  --primary-navy: #0a192f;
  --navy-light: #132e4f;
  --navy-hover: #1e3a5f;
  --emerald-main: #0f6b4a;
  --emerald-bright: #10b981;
  --emerald-dark: #074731;
  --emerald-light: #e6f7f0;
  --gold-accent: #d97706;
  --gold-light: #fef3c7;
  --sky-blue: #0284c7;
  --sky-light: #e0f2fe;
  --bg-slate: #f8fafc;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --border-hover: #cbd5e1;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 30px -10px rgba(15, 23, 42, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-slate);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--emerald-light);
  color: var(--emerald-main);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.badge-gold {
  background-color: var(--gold-light);
  color: var(--gold-accent);
}

.badge-blue {
  background-color: var(--sky-light);
  color: var(--sky-blue);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--emerald-main);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(15, 107, 74, 0.3);
}

.btn-primary:hover {
  background-color: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 107, 74, 0.4);
}

.btn-secondary {
  background-color: var(--primary-navy);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(10, 25, 47, 0.25);
}

.btn-secondary:hover {
  background-color: var(--navy-light);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--emerald-main);
  color: var(--emerald-main);
}

.btn-outline:hover {
  background-color: var(--emerald-main);
  color: var(--text-white);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--text-white);
}

.btn-outline-white:hover {
  background-color: var(--text-white);
  color: var(--primary-navy);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
}

.brand-logo i {
  color: var(--emerald-main);
  font-size: 1.6rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-body);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--emerald-main);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--emerald-main);
  border-radius: 3px;
}

.hamburger-btn {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 25, 47, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  min-width: 280px;
  max-width: 380px;
  height: 100vh;
  background-color: var(--bg-slate);
  z-index: 1001;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-drawer.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.mobile-close-btn {
  background: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  width: 100%;
  padding: 0.6rem 0;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--emerald-main);
  background-color: var(--emerald-light);
}

.mobile-cta {
  margin-top: 1.5rem;
  width: 100%;
}

.hero-home {
  position: relative;
  padding-top: 140px;
  padding-bottom: 100px;
  background-image: linear-gradient(135deg, rgba(10, 25, 47, 0.88), rgba(15, 107, 74, 0.82)), url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-left-content {
  max-width: 720px;
}

.hero-home h1 {
  font-size: 3.5rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.15;
}

.hero-home p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-pill i {
  color: var(--emerald-bright);
}

.hero-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  color: var(--text-white);
}

.glass-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.5rem;
}

.glass-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.glass-brand i {
  color: var(--emerald-bright);
}

.glass-status {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald-bright);
  background: rgba(16, 185, 129, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.glass-metric-box {
  background: rgba(10, 25, 47, 0.4);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-metric-title {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
}

.glass-categories-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.glass-cat-pill {
  flex: 1;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.glass-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-banner-inner {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  text-align: center;
}

.banner-money-planning {
  background-image: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(2, 132, 199, 0.85)), url('https://images.unsplash.com/photo-1450133064473-71024230f91b?auto=format&fit=crop&w=1600&q=80');
}

.banner-saving-budgeting {
  background-image: linear-gradient(135deg, rgba(7, 71, 49, 0.9), rgba(10, 25, 47, 0.85)), url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?auto=format&fit=crop&w=1600&q=80');
}

.banner-investing-basics {
  background-image: linear-gradient(135deg, rgba(10, 25, 47, 0.92), rgba(217, 119, 6, 0.82)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=1600&q=80');
}

.banner-contact {
  background-image: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(15, 107, 74, 0.85)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80');
}

.hero-banner-inner h1 {
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.hero-banner-inner p {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image-container img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition);
}

.split-image-container:hover img {
  transform: scale(1.03);
}

.split-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.split-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.split-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.split-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.split-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--emerald-light);
  color: var(--emerald-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--bg-card);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald-bright);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background-color: var(--emerald-light);
  color: var(--emerald-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition);
}

.feature-card:hover .card-icon {
  background-color: var(--emerald-main);
  color: var(--text-white);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--emerald-main);
  margin-top: auto;
  width: 100%;
}

.card-link:hover {
  color: var(--emerald-dark);
  gap: 0.8rem;
}

.pathway-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 2rem;
}

.pathway-step {
  background-color: var(--bg-card);
  padding: 1.8rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.pathway-step:hover {
  transform: translateY(-5px);
  border-color: var(--emerald-main);
  box-shadow: var(--shadow-md);
}

.path-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-main), var(--navy-light));
  color: var(--text-white);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 4px 10px rgba(15, 107, 74, 0.3);
}

.pathway-step h4 {
  font-size: 1.05rem;
  color: var(--primary-navy);
}

.article-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.article-image {
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.article-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--emerald-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.article-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.article-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.75), rgba(15, 107, 74, 0.75));
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gallery-overlay h4 {
  color: var(--text-white);
  font-size: 1.25rem;
  text-align: center;
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--border-light);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
  padding: 0 2.5rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: left;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--emerald-main);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 0 6px var(--bg-slate);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -23px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -23px;
}

.timeline-card {
  background-color: var(--bg-card);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.timeline-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--primary-navy);
  text-align: left;
}

.timeline-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  text-align: left;
}

.checklist-box {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background-color: var(--bg-slate);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.checklist-item i {
  color: var(--emerald-main);
  font-size: 1.3rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--emerald-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.budget-visual-card {
  background-color: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.budget-category-bar {
  margin-bottom: 1.8rem;
}

.budget-bar-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-weight: 600;

}

.budget-bar-title {
  color: var(--text-dark);
}

.budget-bar-percent {
  color: var(--emerald-main);
}

.progress-track {
  width: 100%;
  height: 12px;
  background-color: var(--bg-slate);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--emerald-main), var(--emerald-bright));
  transition: width 1s ease-in-out;
}

.disclaimer-box {
  background-color: var(--gold-light);
  border-left: 4px solid var(--gold-accent);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-sm);
  color: #92400e;
  font-size: 0.95rem;
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-box i {
  font-size: 1.3rem;
  margin-top: 0.1rem;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.glossary-card {
  background-color: var(--bg-card);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.glossary-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-blue);
}

.glossary-term {
  font-size: 1.2rem;
  color: var(--primary-navy);
  margin-bottom: 0.8rem;
}

.glossary-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-grid {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: nowrap;
}

.contact-info-card {
  flex: 1;
  min-width: 0;
  background-color: var(--bg-card);
  padding: 1.8rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald-main);
}

.contact-info-card i {
  font-size: 1.8rem;
  color: var(--emerald-main);
  margin-bottom: 1rem;
}

.contact-info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-wrapper-box {
  background-color: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: var(--bg-slate);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--emerald-main);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(15, 107, 74, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-success-msg {
  display: none;
  padding: 1.2rem 1.5rem;
  background-color: var(--emerald-light);
  color: var(--emerald-main);
  border-radius: var(--radius-sm);
  border: 1px solid var(--emerald-bright);
  font-weight: 600;
  margin-top: 1rem;
  align-items: center;
  gap: 0.8rem;
}

.form-success-msg.show {
  display: flex;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.faq-card {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faq-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  text-align: left;
}

.faq-card h3 i {
  color: var(--emerald-main);
  font-size: 1.1rem;
}

.faq-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: left;
}

.newsletter-section {
  background: linear-gradient(135deg, var(--primary-navy), var(--navy-light));
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.newsletter-section h2 {
  color: var(--text-white);
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-white);
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
  background-color: #ffffff;
  color: var(--text-dark);
}

.footer {
  background-color: var(--primary-navy);
  color: var(--text-white);
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--emerald-main);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--emerald-bright);
  padding-left: 5px;
}

.footer-disclaimer-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 3rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
  color: var(--text-white);
}

@media (max-width: 1024px) {
  .hero-split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hero-home h1 {
    font-size: 2.8rem;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .pathway-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .glossary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .image-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-left-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    justify-items: center;
  }
  .trust-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-trust-pills .trust-pill:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 240px;
    justify-self: center;
  }
  .split-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .split-feature-list {
    align-items: center;
    width: 100%;
  }
  .split-feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .gallery-item {
    text-align: center;
  }
  .gallery-overlay {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-menu, .nav-cta-btn {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .hero-home {
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
  }
  .hero-home h1 {
    font-size: 2.2rem;
  }
  .hero-home p {
    font-size: 1.05rem;
  }
  .hero-banner-inner h1 {
    font-size: 2.2rem;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-image-container img {
    height: 320px;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .pathway-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-container::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 3.5rem;
    padding-right: 0;
  }
  .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
    left: 0;
    text-align: left;
  }
  .timeline-badge {
    left: 0 !important;
    right: auto !important;
  }
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  .glossary-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-section {
    padding: 2.5rem 1.5rem;
  }
  .section-header h2 {
    font-size: 1.7rem;
  }
  .section-header p {
    font-size: 0.98rem;
  }
  .text-center h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.5rem;
  }
  .text-center h2 {
    font-size: 1.45rem;
  }
  .pathway-wrapper {
    grid-template-columns: 1fr;
  }
  .image-gallery-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .mobile-menu-drawer {
    width: 75%;
  }
}
