/* ==========================================================================
   Core Talent Bridge - Master Stylesheet
   Color Palette: Navy Blue, White, Light Gray, Refined Teal & Accent Blue
   ========================================================================== */

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

:root {
  --primary-navy: #0B192C;
  --secondary-navy: #1E293B;
  --slate-dark: #334155;
  --slate-muted: #64748B;
  --slate-light: #F1F5F9;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --accent-teal: #00A896;
  --accent-teal-hover: #00897B;
  --accent-blue: #0284C7;
  --accent-blue-hover: #0369A1;
  --border-color: #E2E8F0;
  --border-focus: #0284C7;
  
  --shadow-sm: 0 1px 3px rgba(11, 25, 44, 0.05), 0 1px 2px rgba(11, 25, 44, 0.03);
  --shadow-md: 0 4px 14px rgba(11, 25, 44, 0.07), 0 2px 4px rgba(11, 25, 44, 0.03);
  --shadow-lg: 0 12px 28px rgba(11, 25, 44, 0.1), 0 4px 10px rgba(11, 25, 44, 0.04);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--slate-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2.15rem; letter-spacing: -0.015em; }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-blue-hover);
}

/* Focus outline for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent-teal);
  outline-offset: 2px;
}

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

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

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

.section-bg-alt {
  background-color: var(--bg-light);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.max-w-700 { max-width: 700px; margin-left: auto; margin-right: auto; }

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--primary-navy);
  color: var(--bg-white);
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  border-radius: var(--radius-sm);
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 1rem;
}

/* Top Utility Bar */
.top-bar {
  background-color: var(--primary-navy);
  color: #CBD5E1;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-contact a {
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-contact a:hover {
  color: var(--accent-teal);
}

.top-bar-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #94A3B8;
}

/* Sticky Main Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.15rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--secondary-navy);
  padding: 0.4rem 0.2rem;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-teal);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background-color: var(--accent-teal);
  border-radius: 2px;
}

/* Nav Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-list-actions {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-teal);
  color: var(--bg-white);
  border-color: var(--accent-teal);
}
.btn-primary:hover {
  background-color: var(--accent-teal-hover);
  border-color: var(--accent-teal-hover);
  color: var(--bg-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 168, 150, 0.25);
}

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

.btn-outline-teal {
  background-color: transparent;
  color: var(--accent-teal);
  border-color: var(--accent-teal);
}
.btn-outline-teal:hover {
  background-color: var(--accent-teal);
  color: var(--bg-white);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary-navy);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0B192C 0%, #152A4A 100%);
  color: var(--bg-white);
  padding: 4.5rem 0 5.5rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 168, 150, 0.15);
  color: #38BDF8;
  border: 1px solid rgba(0, 168, 150, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  color: var(--bg-white);
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.hero-content p {
  color: #CBD5E1;
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
  color: var(--bg-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-secondary:hover {
  background-color: var(--bg-white);
  color: var(--primary-navy);
  border-color: var(--bg-white);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.1);
}

/* Sub-page Banner Header */
.page-banner {
  background: linear-gradient(135deg, #0B192C 0%, #1E293B 100%);
  color: var(--bg-white);
  padding: 3.5rem 0;
  border-bottom: 3px solid var(--accent-teal);
}

.page-banner h1 {
  color: var(--bg-white);
  margin-bottom: 0.75rem;
}

.page-banner p {
  color: #94A3B8;
  font-size: 1.1rem;
  margin: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: #38BDF8;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Trust Intro Section */
.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.trust-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 168, 150, 0.1);
  color: var(--accent-teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.trust-icon svg {
  width: 26px;
  height: 26px;
}

/* Services Grid Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-teal);
}

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

.service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary-navy);
}

.service-card p {
  color: var(--slate-muted);
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-size: 0.975rem;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link:hover {
  color: var(--accent-blue-hover);
  gap: 0.6rem;
}

/* Feature Split Layouts (Employer & Job Seeker) */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.feature-split.reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-content h2 {
  margin-bottom: 1.25rem;
}

.feature-content p {
  color: var(--slate-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.975rem;
}

.feature-list svg {
  width: 20px;
  height: 20px;
  color: var(--accent-teal);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-img-box img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Industry Grid Section */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.industry-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.industry-card:hover {
  border-color: var(--accent-teal);
  box-shadow: var(--shadow-md);
}

.industry-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.industry-icon {
  width: 40px;
  height: 40px;
  background-color: var(--slate-light);
  color: var(--primary-navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon svg {
  width: 22px;
  height: 22px;
}

.industry-card h3 {
  font-size: 1.15rem;
}

.roles-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.role-tag {
  background-color: var(--slate-light);
  color: var(--slate-dark);
  font-size: 0.825rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}

/* Disclaimer Box */
.disclaimer-box {
  background-color: #EFF6FF;
  border-left: 4px solid var(--accent-blue);
  padding: 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
  font-size: 0.925rem;
  color: #1E40AF;
}

.warning-box {
  background-color: #FFFBEB;
  border-left: 4px solid #F59E0B;
  padding: 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-size: 0.925rem;
  color: #92400E;
}

/* Process Steps Component */
.process-tabs-wrapper {
  margin-top: 2.5rem;
}

.process-column-header {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent-teal);
  margin-bottom: 0.5rem;
  display: inline-block;
  background: rgba(0, 168, 150, 0.1);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}

.step-card h4 {
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--slate-muted);
}

/* Why Choose Us Grid */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.why-card {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.why-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-navy);
  color: var(--bg-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
  color: var(--slate-muted);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--accent-teal);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--slate-muted);
  font-size: 0.975rem;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, #0B192C 0%, #00A896 100%);
  color: var(--bg-white);
  padding: 4rem 0;
  text-align: center;
  border-radius: var(--radius-lg);
}

.cta-banner h2 {
  color: var(--bg-white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #E2E8F0;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* Form Styles */
.form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-navy);
}

label .required {
  color: #DC2626;
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-white);
  color: var(--slate-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
  outline: none;
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--accent-teal);
  cursor: pointer;
}

.checkbox-group label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--slate-muted);
  line-height: 1.4;
}

/* File Upload Drag & Drop Zone */
.file-upload-zone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  background-color: var(--bg-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.file-upload-zone:hover, .file-upload-zone.dragover {
  border-color: var(--accent-teal);
  background-color: rgba(0, 168, 150, 0.05);
}

.upload-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem auto;
  color: var(--accent-teal);
}

.file-info {
  font-size: 0.85rem;
  color: var(--slate-muted);
  margin-top: 0.5rem;
}

.selected-file-name {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--accent-teal);
  font-size: 0.9rem;
}

/* Honeypot hidden field */
.hp-field {
  display: none !important;
  visibility: hidden !important;
}

/* Alert Messages */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  display: none;
}

.alert-success {
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
}

.alert-error {
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #FBD5D5;
}

/* Article Cards & Hub */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

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

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

.article-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-tag {
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-teal);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.article-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.article-excerpt {
  color: var(--slate-muted);
  font-size: 0.925rem;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.article-read-more {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Article Detail Page */
.article-detail-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.article-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.article-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--slate-muted);
  font-size: 0.9rem;
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
}

.article-content h2 {
  margin: 2rem 0 1rem 0;
  font-size: 1.65rem;
}

.article-content h3 {
  margin: 1.5rem 0 0.75rem 0;
  font-size: 1.3rem;
}

.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

/* Footer Section */
.site-footer {
  background-color: var(--primary-navy);
  color: #94A3B8;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  font-size: 0.9rem;
  border-top: 4px solid var(--accent-teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  color: var(--bg-white);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--accent-teal);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.footer-contact-info p {
  margin-bottom: 0.4rem;
  color: #CBD5E1;
}

.footer-contact-info a {
  color: #CBD5E1;
}

.footer-contact-info a:hover {
  color: var(--accent-teal);
}

.footer-col h4 {
  color: var(--bg-white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #94A3B8;
  transition: color var(--transition-fast);
}

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

.footer-disclaimer-box {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 0.825rem;
  line-height: 1.5;
  color: #94A3B8;
}

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-navy);
  color: var(--bg-white);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9000;
  display: none;
  border-top: 3px solid var(--accent-teal);
}

.cookie-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 500px;
  font-size: 0.9rem;
  color: #CBD5E1;
}

.cookie-text a {
  color: #38BDF8;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Responsive Rules */
@media (max-width: 1080px) {
  .top-bar { display: none; }
  
  .nav-list {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-list.active {
    transform: translateX(0);
  }

  .nav-actions {
    display: none;
  }

  .nav-list-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-image {
    height: 320px;
  }
  .feature-split, .feature-split.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.75rem; }
  .section-padding { padding: 3rem 0; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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