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

:root {
  --primary-navy: #0B192C;
  --secondary-navy: #1E3E62;
  --accent-gold: #D4AF37;
  --accent-gold-hover: #B59326;
  --light-blue: #E8F1F5;
  --sky-blue: #0077B6;
  --bg-light: #F8FAFC;
  --bg-card: #FFFFFF;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(11, 25, 44, 0.05);
  --shadow-md: 0 6px 20px rgba(11, 25, 44, 0.08);
  --shadow-lg: 0 15px 35px rgba(11, 25, 44, 0.12);
  --transition: all 0.3s ease;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 80px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-navy);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

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

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

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.tag-label {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sky-blue);
  background-color: var(--light-blue);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 16px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1002;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-navy);
}

.logo i {
  color: var(--accent-gold);
  font-size: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 20px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-navy);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sky-blue);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
}

.header-cta {
  display: flex;
  align-items: center;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-navy);
  cursor: pointer;
  z-index: 1002;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(11, 25, 44, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

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

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  min-width: 280px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 125px 30px 40px 30px;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  margin-top: 20px;
}

.mobile-nav-links a {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-navy);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--sky-blue);
}

.mobile-cta {
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

.mobile-cta .btn {
  width: 100%;
}

.alert-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.alert-modal.active {
  opacity: 1;
  visibility: visible;
}

.alert-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.alert-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-blue);
  color: var(--sky-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px auto;
}

.alert-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.alert-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero {
  position: relative;
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 100px 0 120px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 50px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: #CBD5E1;
  margin-bottom: 35px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
  font-size: 28px;
  color: var(--accent-gold);
}

.stat-item p {
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 0;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-lg);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-gold);
  color: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero-card-header h3 {
  color: var(--white);
  font-size: 20px;
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 15px;
}

.hero-card-item i {
  color: var(--accent-gold);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-image-group {
  position: relative;
}

.intro-image-group img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.intro-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent-gold);
}

.intro-badge h4 {
  color: var(--accent-gold);
  font-size: 24px;
}

.intro-badge p {
  font-size: 13px;
  color: #CBD5E1;
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  text-align: center;
}

.intro-content p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 16px;
  text-align: center;
}

.intro-content a,
.intro-content .btn {
  margin-left: auto;
  margin-right: auto;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-item i {
  display: none;
}

.feature-item div h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.feature-item div p {
  font-size: 14px;
  margin-bottom: 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

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

.category-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.category-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  align-items: center;
}

.category-icon {
  width: 44px;
  height: 44px;
  background-color: var(--light-blue);
  color: var(--sky-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}

.category-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.category-body p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 14px;
}

.link-btn:hover {
  color: var(--sky-blue);
}

.why-section {
  background-color: var(--primary-navy);
  color: var(--white);
}

.why-section .section-title h2 {
  color: var(--white);
}

.why-section .section-title p {
  color: #CBD5E1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
}

.why-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
}

.why-icon {
  font-size: 32px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.why-box h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 12px;
}

.why-box p {
  color: #94A3B8;
  font-size: 14px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.step-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--light-blue);
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.trust-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.trust-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  text-align: center;
}

.trust-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.trust-quotes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--sky-blue);
  box-shadow: var(--shadow-sm);
}

.quote-card p {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 12px;
  font-size: 15px;
}

.quote-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-navy);
}

.trust-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: 450px;
  width: 100%;
  object-fit: cover;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  color: var(--white);
  padding: 70px 0;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-banner p {
  color: #CBD5E1;
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto 30px auto;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-header {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-header h1 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 15px;
}

.page-header p {
  color: #CBD5E1;
  font-size: 17px;
}

.plans-alternating {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.plan-row.reverse {
  direction: rtl;
}

.plan-row.reverse .plan-content {
  direction: ltr;
}

.plan-row.reverse .plan-image {
  direction: ltr;
}

.plan-image img {
  border-radius: var(--radius-md);
  height: 320px;
  width: 100%;
  object-fit: cover;
}

.plan-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.plan-content h3 {
  font-size: 26px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.plan-content h3 i {
  display: none;
}

.plan-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.plan-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.plan-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.plan-benefit-item i {
  color: var(--accent-gold);
}

.guide-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 60px;
}

.guide-hero-img img {
  border-radius: var(--radius-md);
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.guide-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.guide-main-article {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.guide-section {
  margin-bottom: 40px;
}

.guide-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 8px;
}

.guide-section p {
  color: var(--text-main);
  margin-bottom: 15px;
}

.guide-highlight {
  background-color: var(--light-blue);
  border-left: 4px solid var(--sky-blue);
  padding: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}

.guide-highlight h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-navy);
}

.guide-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.sidebar-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.term-item h4 {
  font-size: 16px;
  color: var(--sky-blue);
  margin-bottom: 4px;
}

.term-item p {
  font-size: 13px;
  color: var(--text-muted);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 25px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item h3 i {
  color: var(--sky-blue);
}

.faq-item p {
  color: var(--text-muted);
  font-size: 15px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resource-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
}

.resource-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.resource-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
  flex-grow: 1;
  width: 100%;
}

.resource-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.resource-body h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.resource-body p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.checklist-wrapper {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 40px;
  margin-top: 60px;
}

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

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius-sm);
}

.check-item i {
  color: var(--accent-gold);
  font-size: 20px;
  margin-top: 2px;
}

.check-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.check-item p {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
}

.contact-info h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #CBD5E1;
  margin-bottom: 30px;
  font-size: 15px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-item i {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-item h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-detail-item p {
  color: #94A3B8;
  margin-bottom: 0;
  font-size: 14px;
}

.form-box {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.form-box h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.form-box p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-navy);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--sky-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

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

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
}

.custom-table th, .custom-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
}

.custom-table th {
  background-color: var(--primary-navy);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.custom-table tr:last-child td {
  border-bottom: none;
}

.custom-table tr:nth-child(even) td {
  background-color: var(--bg-light);
}

.table-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.table-badge.basic {
  background-color: #E2E8F0;
  color: #475569;
}

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

.table-badge.ultimate {
  background-color: #FEF3C7;
  color: #B45309;
}

.insight-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

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

.insight-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.insight-body {
  padding: 25px;
  text-align: center;
}

.insight-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.insight-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.insight-meta i {
  color: var(--accent-gold);
}

.insight-body h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.insight-body p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: center !important;
}

.grid-2 > * {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-2 h3 {
  justify-content: center;
  text-align: center !important;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center !important;
}

.grid-3 > * {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-3 .insight-meta,
.grid-3 h3 {
  justify-content: center;
}

.branch-card {
  text-align: left !important;
  align-items: flex-start !important;
  width: 100%;
}

.branch-card h3 {
  text-align: center !important;
  justify-content: center !important;
  width: 100%;
}

.branch-card .branch-item {
  justify-content: flex-start !important;
  text-align: left !important;
  align-items: flex-start !important;
  width: 100%;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.grid-4 > * {
  text-align: center;
}

.branch-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.branch-card:hover {
  border-color: var(--sky-blue);
  box-shadow: var(--shadow-md);
}

.branch-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.branch-card h3 i {
  color: var(--sky-blue);
}

.branch-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.branch-item i {
  color: var(--accent-gold);
  margin-top: 3px;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background-color: var(--light-blue);
  color: var(--sky-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 14px;
}

.scorecard-box {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scorecard-box * {
  text-align: center !important;
}

.scorecard-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-navy);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px auto;
}

.scorecard-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.scorecard-box p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer {
  background-color: var(--primary-navy);
  color: var(--white);
  padding-top: 80px;
  margin-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 14px;
  margin-bottom: 25px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.footer-social a:hover {
  background-color: var(--accent-gold);
  color: var(--primary-navy);
}

.footer-column h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #CBD5E1;
  font-size: 14px;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #CBD5E1;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--accent-gold);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #94A3B8;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #94A3B8;
}

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

@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .header-cta {
    display: none;
  }
  
  .hamburger-btn {
    display: block;
  }

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

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }

  .plan-row, .plan-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .plan-content h3 {
    gap: 6px;
  }

  .guide-hero {
    grid-template-columns: 1fr;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .trust-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }

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

  .trust-content .tag-label {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-content,
  .info-content {
    text-align: center;
  }

  .intro-content .tag-label,
  .info-content .tag-label {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-content p,
  .info-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .category-card,
  .category-body {
    text-align: center;
    align-items: center;
  }

  .category-icon {
    margin-left: auto;
    margin-right: auto;
  }

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

  .why-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .grid-4,
  .grid-4 > * {
    text-align: center;
  }

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

  .step-number {
    margin-left: auto;
    margin-right: auto;
  }

  .insight-card,
  .insight-body {
    text-align: center;
  }

  .insight-meta {
    justify-content: center;
  }

  .cta-banner-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-banner-buttons .btn {
    padding: 11px 20px;
    font-size: 14px;
    width: 100%;
    max-width: 290px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
