/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ========== UTILITY ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #002060;
  margin-bottom: 16px;
  text-align: center;
}

.section-subheading {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #002060;
  z-index: 1000;
  padding: 0 24px;
  transition: box-shadow 0.3s;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  transition: height 0.3s;
}

.navbar-logo img {
  height: 100px;
  transition: height 0.3s;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links > li {
  position: relative;
}

.navbar-links a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.navbar-links a:hover {
  opacity: 0.8;
}

.navbar-links .btn-quote {
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 8px 22px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}

.navbar-links .btn-quote:hover {
  background: #fff;
  color: #002060;
  opacity: 1;
}

/* Nav active state */
.navbar-links a.active {
  opacity: 1;
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Mobile Nav Drawer ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  background: #002060;
  padding: 24px;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav > a {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
  text-decoration: none;
}

.mobile-nav > a:last-child {
  border-bottom: none;
}

/* Scrolled (shrink) state */
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.navbar.scrolled .container {
  height: 72px;
}

.navbar.scrolled .navbar-logo img {
  height: 60px;
}

.navbar.scrolled + .mobile-nav {
  top: 72px;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: #002060;
  background-image: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 48px;
}

/* Dark overlay + subtle diagonal line texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.03) 40px,
      rgba(255,255,255,0.03) 41px
    ),
    rgba(0, 32, 96, 0.62);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  animation: heroFadeIn 1s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: #002060;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.btn-primary:hover {
  background: transparent;
  color: #fff;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: #fff;
  color: #002060;
}

/* ========== WHY GO INDEPENDENT (Value Props) ========== */
.independent {
  background: #F5F4F0;
  padding: 96px 24px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin-top: 56px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.checklist-icon {
  color: #002060;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.checklist-item h3 {
  font-size: 1.35rem;
  color: #002060;
  margin-bottom: 8px;
}

.checklist-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---- Independent Pillars ---- */
.independent-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px auto 56px;
  max-width: 960px;
}

.pillar {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  border-left: 4px solid #002060;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.pillar h3 {
  font-size: 1.2rem;
  color: #002060;
  margin-bottom: 10px;
}

.pillar p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ========== CARRIER GRID ========== */
.carriers {
  background: #fff;
  padding: 48px 24px;
}

.carrier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.carrier-tile {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: border-color 0.25s, box-shadow 0.25s;
  background: #fff;
}

.carrier-tile:hover {
  border-color: #002060;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.carrier-tile img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}

.carrier-tile-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #002060;
  text-align: center;
}

.carrier-tile-more {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #002060;
  font-style: italic;
}

.carrier-footnote {
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  margin-top: 32px;
}

/* Placeholder carrier tiles */
.carrier-tile-placeholder {
  background: #F5F4F0;
  border: 2px dashed #ccc;
}

.carrier-tile-placeholder span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: #999;
}

/* ========== AGENCY INTRO ========== */
.agency-intro {
  background: #fff;
  padding: 72px 24px 40px;
}

.agency-intro .container {
  max-width: 800px;
}

.agency-intro p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
}

.agency-intro p:last-child {
  margin-bottom: 0;
}

/* ========== CARRIER NETWORK (Text-based) ========== */
.carrier-network {
  background: #fff;
  padding: 96px 24px;
}

.carrier-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  gap: 20px;
}

.benefit-icon {
  color: #002060;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.benefit-item h3 {
  color: #002060;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.benefit-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.carriers-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.carriers-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.carriers-text p:last-child {
  margin-bottom: 0;
}

.carrier-info-box {
  background: #F8F7F4;
  border-left: 4px solid #002060;
  padding: 32px;
  border-radius: 4px;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.carrier-info-box p {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.carrier-info-box a {
  color: #002060;
  font-weight: 600;
  text-decoration: underline;
  transition: opacity 0.25s;
}

.carrier-info-box a:hover {
  opacity: 0.8;
}

/* ========== CARRIER CAROUSELS (Homepage) ========== */
.carrier-carousels {
  background: #fff;
  padding: 72px 24px;
}

.carousel-section {
  margin-bottom: 48px;
}

.carousel-section:last-child {
  margin-bottom: 0;
}

.carousel-label {
  font-size: 1.35rem;
  color: #002060;
  text-align: center;
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Fade-out edges */
.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: carouselScroll 40s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-tile {
  flex-shrink: 0;
  width: 200px;
  height: 108px;
  border: 2px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: #fff;
}

.carousel-tile img {
  width: 100%;
  height: 88px;
  object-fit: contain;
}

.carousel-tile .carrier-tile-text {
  font-size: 0.85rem;
}

.carousel-tile .carrier-tile-more {
  font-size: 1rem;
}

.carousel-tile-placeholder {
  background: #F5F4F0;
  border: 2px dashed #ccc;
}

.carousel-tile-placeholder span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: #999;
}

/* Business carousel scrolls a bit slower (fewer tiles) */
.carousel-section:last-child .carousel-track {
  animation-duration: 25s;
}

@keyframes carouselScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes carouselScrollReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.carousel-track--reverse {
  animation-name: carouselScrollReverse;
}

/* ========== SERVICES OVERVIEW (Homepage) ========== */
.services-overview {
  background: #fff;
  padding: 40px 24px 96px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.services-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #F5F4F0;
  border-radius: 10px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 3px solid #002060;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card .card-icon {
  font-size: 2.25rem;
  color: #002060;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #002060;
  margin-bottom: 12px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.btn-navy {
  display: inline-block;
  background: #002060;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #002060;
  transition: background 0.25s, color 0.25s;
}

.btn-navy:hover {
  background: #fff;
  color: #002060;
}

/* ========== QUOTE PORTALS ========== */
.quote-portals {
  background: #2e2e2e;
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}

.quote-portals::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
  pointer-events: none;
}

.quote-portals .section-heading {
  color: #fff;
}

.quote-portals .section-subheading {
  color: rgba(255,255,255,0.7);
  max-width: 860px;
}

.quote-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quote-card {
  background: #fff;
  border: 2px solid #002060;
  border-radius: 10px;
  padding: 24px 28px;
  text-align: center;
}

.quote-card h3 {
  font-size: 1.5rem;
  color: #002060;
  margin-bottom: 12px;
}

.quote-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ========== COVERAGE EDUCATION ========== */
.education {
  background: #F5F4F0;
  padding: 96px 24px 32px;
}

.tab-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.tab-btn {
  background: none;
  border: 2px solid #002060;
  color: #002060;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 36px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.tab-btn:first-child {
  border-radius: 6px 0 0 6px;
}

.tab-btn:last-child {
  border-radius: 0 6px 6px 0;
  border-left: none;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

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

.flip-card.flip-card--centered {
  grid-column: 1 / -1;
  width: calc(50% - 12px);
  margin: 0 auto;
}

.flip-card.flip-card--more {
  grid-column: 1 / -1;
  height: 90px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.flip-card--more .flip-card-front {
  flex-direction: row;
  justify-content: center;
  gap: 16px;
}

.flip-card--more .flip-card-front .card-icon {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.flip-card--more .flip-card-front h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.flip-card--more .flip-card-front .flip-hint {
  margin-top: 0;
}

.education-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.education-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.education-card .card-icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.education-card h3 {
  font-size: 1.35rem;
  color: #002060;
  margin-bottom: 10px;
}

.education-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== FLIP CARDS (Policies We Offer) ========== */
.flip-card {
  cursor: pointer;
  perspective: 1000px;
  height: 230px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.flip-card-front {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.flip-card:hover .flip-card-front {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.flip-card-front .card-icon {
  font-size: 1.75rem;
  color: #002060;
  margin-bottom: 16px;
}

.flip-card-front h3 {
  font-size: 1.3rem;
  color: #002060;
  margin-bottom: 0;
}

.flip-hint {
  font-size: 0.75rem;
  color: #bbb;
  font-style: italic;
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
}

.flip-card-back {
  background: #002060;
  transform: rotateY(180deg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.flip-card-back p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ========== KEY TERMS ========== */
.terms {
  background: #fff;
  padding: 96px 24px;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.term-card {
  background: #F5F4F0;
  border-radius: 10px;
  padding: 28px 24px;
  border-left: 4px solid #002060;
}

.term-card h3 {
  font-size: 1.15rem;
  color: #002060;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.term-card p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========== INDUSTRIES / APPETITE GUIDE ========== */
.industries {
  background: #2e2e2e;
  padding: 56px 24px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.industries .section-heading {
  color: #fff;
}

.industries .section-subheading {
  color: rgba(255,255,255,0.7);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 48px auto 36px;
  max-width: 800px;
}

.pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.25s;
}

.pill:hover {
  background: rgba(255,255,255,0.2);
}

.industries-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* ========== CONTACT FORM ========== */
.contact {
  background: #fff;
  padding: 48px 24px;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #002060;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #333;
  transition: border-color 0.25s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #002060;
}

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

.form-group input[type="file"] {
  padding: 10px;
  border-style: dashed;
  cursor: pointer;
}

.form-group .file-label {
  font-weight: 400;
  font-size: 0.85rem;
  color: #888;
  margin-top: 4px;
}

.form-security {
  background: #F5F4F0;
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.form-security i {
  color: #002060;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-submit {
  background: #b7becb;
  color: #fff;
  padding: 13px 32px;
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-submit:disabled {
  cursor: not-allowed;
}

.btn-submit.is-ready,
.btn-submit.is-submitting {
  background: #002060;
}

.btn-submit.is-ready:hover,
.btn-submit.is-submitting:hover {
  background: #1a3a7a;
}

.btn-submit.is-success {
  background: #2e7d32;
  box-shadow: 0 10px 24px rgba(46, 125, 50, 0.24);
  animation: submit-success-pop 0.45s ease;
}

.btn-submit.is-success:hover {
  background: #2e7d32;
}

.btn-submit-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-submit-check {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transform: scale(0.5);
  transform-origin: center;
  transition: width 0.28s ease, opacity 0.2s ease, transform 0.28s ease, margin-right 0.28s ease;
}

.btn-submit.is-success .btn-submit-check {
  width: 18px;
  opacity: 1;
  transform: scale(1);
  margin-right: 8px;
}

.form-submit-feedback {
  min-height: 20px;
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #c0392b;
}

.form-submit-feedback.is-success {
  color: #2e7d32;
}

@keyframes submit-success-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes upload-progress-slide {
  0% {
    transform: translateX(-65%);
    background-position: 0% 50%;
  }
  100% {
    transform: translateX(220%);
    background-position: 100% 50%;
  }
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  gap: 12px;
}

.form-success-icon {
  font-size: 3.5rem;
  color: #2e7d32;
}

.form-success-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #002060;
  margin: 0;
}

.form-success-sub {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

.form-privacy {
  text-align: center;
  color: #888;
  font-size: 0.8rem;
  margin-top: 16px;
}

/* ========== PAGE HEADER (non-homepage pages) ========== */
.page-header {
  background: #002060;
  padding: 160px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.03) 40px,
    rgba(255,255,255,0.03) 41px
  );
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  white-space: nowrap;
}

/* ========== ABOUT PAGE ========== */
.about-section {
  padding: 96px 24px;
}

.about-section:nth-child(odd) {
  background: #F5F4F0;
}

.about-section:nth-child(even) {
  background: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.headshot-placeholder {
  width: 300px;
  height: 380px;
  background: #e0ddd8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  flex-shrink: 0;
}

.headshot-photo {
  width: 300px;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.about-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: #002060;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-independent {
  background: #2e2e2e;
  padding: 56px 24px;
}

.about-independent .section-heading {
  color: #fff;
}

.about-pillar {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 32px;
}

.about-pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}

.about-pillar p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-values {
  max-width: 960px;
  margin: 0 auto;
}

.about-values h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: #002060;
  margin-bottom: 20px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.value-card .card-icon {
  font-size: 2rem;
  color: #002060;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.35rem;
  color: #002060;
  margin-bottom: 10px;
}

.value-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
  background: #002060;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 64px 24px 0;
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  align-items: center;
  text-align: left;
}

.footer-brand,
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.footer-brand {
  padding-left: 0;
}

.footer-brand .footer-logo img {
  height: 120px;
  margin-bottom: 16px;
}

.footer-brand .footer-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-style: italic;
}

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

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: #fff;
}

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

.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #fff;
}

.footer-contact p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .independent-pillars {
    grid-template-columns: 1fr;
  }

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

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

  .education-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .flip-card.flip-card--centered {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 48px auto 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 40px auto 0;
  }

  .terms-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

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

  .footer-brand {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

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

  .quote-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .tab-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .carrier-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ========== INDUSTRY SLIDESHOW ========== */
.industry-slideshow {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
}

.industry-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: flex-end;
}

.industry-slide.active {
  opacity: 1;
}

.industry-slide-label {
  width: 100%;
  padding: 24px 32px;
  background: linear-gradient(to top, rgba(0,32,96,0.88) 50%, transparent);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px auto 0;
}

.slideshow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s;
}

.slideshow-dot.active {
  background: #fff;
}

/* ========== FOOTER LINKEDIN ========== */
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 14px;
  transition: color 0.2s;
}

.footer-linkedin:hover {
  color: #fff;
}

.footer-linkedin i {
  font-size: 1.25rem;
}

/* ========== STEPPED CONTACT FORM ========== */
.form-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.form-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #002060;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.form-step-body {
  flex: 1;
}

.file-input-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-step-body input[type="text"],
.form-step-body input[type="email"],
.form-step-body input[type="tel"],
.form-step-body input[type="file"],
.form-step-body select,
.form-step-body textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-step-body input[type="text"]:focus,
.form-step-body input[type="email"]:focus,
.form-step-body input[type="tel"]:focus,
.form-step-body select:focus,
.form-step-body textarea:focus {
  outline: none;
  border-color: #002060;
}

.form-step-body input.file-input-hidden[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-step-body textarea {
  min-height: 110px;
  resize: vertical;
}

.form-step-body label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #002060;
  font-size: 0.95rem;
}

.form-disclosure {
  font-size: 0.8rem;
  color: #888;
  margin-top: 6px;
  font-style: italic;
}

.contact-pref {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.label-optional {
  font-weight: 400;
  color: #888;
  font-size: 0.85rem;
}

.asterisk-required {
  color: #c0392b;
  font-weight: 700;
}

.asterisk-optional {
  color: #002060;
  font-weight: 700;
}

.form-legend {
  display: flex;
  gap: 18px;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 10px;
}

.pref-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #002060;
  margin-right: 4px;
}

.pref-option {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
}

.pref-option input[type="radio"] {
  accent-color: #002060;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.file-callout {
  background: #F5F4F0;
  border-left: 4px solid #002060;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin-top: 8px;
}

.file-disclaimer {
  margin: 6px 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #666;
}

.file-dropzone {
  border: 2px dashed #bcc6d8;
  border-radius: 12px;
  background: #f8fafc;
  padding: 24px 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.file-dropzone:hover,
.file-dropzone:focus-visible,
.file-dropzone.is-dragging {
  border-color: #002060;
  background: #f1f5fb;
  box-shadow: 0 0 0 4px rgba(0, 32, 96, 0.08);
  outline: none;
}

.file-dropzone.has-error {
  border-color: #c0392b;
  background: #fdf0ee;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08);
}

.file-dropzone.is-disabled {
  cursor: default;
  opacity: 0.8;
  pointer-events: none;
}

.file-dropzone-icon {
  font-size: 1.75rem;
  color: #002060;
  margin-bottom: 10px;
}

.file-dropzone.has-error .file-dropzone-icon {
  color: #c0392b;
}

.file-dropzone-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #002060;
}

.file-dropzone-subtitle {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: #556070;
}

.file-upload-progress {
  display: none;
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: #dbe3ef;
  overflow: hidden;
}

.file-upload-progress.is-active,
.file-upload-progress.is-complete {
  display: block;
}

.file-upload-progress-bar {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ea7d4 0%, #002060 55%, #8ea7d4 100%);
  background-size: 200% 100%;
  animation: upload-progress-slide 1.2s linear infinite;
}

.file-upload-progress.is-complete .file-upload-progress-bar {
  width: 100%;
  background: #2e7d32;
  animation: none;
}

.file-upload-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.file-upload-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f5f7fb;
  border: 1px solid #d7deea;
}

.file-upload-item.is-invalid {
  background: #fdf0ee;
  border-color: #e1a39b;
}

.file-upload-item-main {
  min-width: 0;
}

.file-upload-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #21324f;
  word-break: break-word;
}

.file-upload-meta {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: #66758d;
}

.file-upload-item.is-invalid .file-upload-meta {
  color: #a33a2d;
}

.file-upload-remove {
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: #002060;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.file-upload-item.is-invalid .file-upload-remove {
  color: #c0392b;
}

.file-upload-feedback {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #556070;
}

.file-upload-feedback.has-error {
  color: #c0392b;
}

.form-turnstile {
  margin: 18px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.turnstile-feedback {
  min-height: 0;
  width: 100%;
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #556070;
  text-align: center;
}

.turnstile-feedback.has-error {
  color: #c0392b;
}

.file-callout p {
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
  margin-bottom: 8px;
}

.file-callout ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.file-callout ul li {
  font-size: 0.85rem;
  color: #555;
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.file-callout ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #002060;
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.quote-transition {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

.quote-transition strong {
  color: #002060;
}

/* ========== BLOG PAGE ========== */
.blog {
  background: #F5F4F0;
  padding: 96px 24px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.blog-card-tag {
  display: inline-block;
  background: #002060;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  width: fit-content;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #002060;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-excerpt {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.blog-card-link {
  color: #002060;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.blog-card-link:hover {
  gap: 10px;
}

/* ========== BLOG SEARCH ========== */
.blog-search-section {
  background: #F5F4F0;
  padding: 40px 0 20px;
}

.blog-search-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.blog-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #002060;
  font-size: 1rem;
  pointer-events: none;
}

.blog-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 2px solid #002060;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #333;
  background: #fff;
  outline: none;
  transition: box-shadow 0.2s ease;
}

.blog-search-input::placeholder {
  color: #999;
}

.blog-search-input:focus {
  box-shadow: 0 0 0 3px rgba(0, 32, 96, 0.15);
}

.blog-no-results {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-top: 16px;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-slideshow {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 48px auto 0;
  }
  .industry-slideshow {
    height: 260px;
  }
  .industry-slide-label {
    font-size: 1.5rem;
    padding: 18px 20px;
  }
  .privacy-content {
    padding: 64px 30px;
  }
  .privacy-section p,
  .privacy-section ul li,
  .privacy-contact-link {
    font-size: 0.94rem;
  }
}

/* ========== 404 PAGE ========== */
.hero-404 {
  min-height: 70vh;
  background: #002060;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
}

.hero-404::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 32, 96, 0.9);
  pointer-events: none;
}

.hero-404-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-404-icon {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0.8;
}

.hero-404-title {
  font-size: clamp(4rem, 12vw, 8rem);
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-404-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-404-description {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.btn-secondary:hover {
  background: #fff;
  color: #002060;
}

.quick-links {
  background: #F5F4F0;
  padding: 80px 24px;
}

.quick-links h3 {
  font-size: 1.8rem;
  color: #002060;
  text-align: center;
  margin-bottom: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.quick-link-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: block;
}

.quick-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.quick-link-card i {
  font-size: 2rem;
  color: #002060;
  margin-bottom: 16px;
}

.quick-link-card h4 {
  font-size: 1.25rem;
  color: #002060;
  margin-bottom: 8px;
  font-weight: 600;
}

.quick-link-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== PRIVACY POLICY ========== */
.privacy-content {
  padding: 80px 24px;
  background: #fff;
}

.privacy-body {
  max-width: 920px;
  margin: 0 auto;
}

.privacy-section {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid #e8e8e8;
}

.privacy-section--last {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.privacy-section-header i {
  font-size: 1.15rem;
  color: #002060;
  width: 26px;
  text-align: center;
  flex-shrink: 0;
}

.privacy-section-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #002060;
  margin: 0;
}

.privacy-section h3 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 28px 0 8px;
}

.privacy-section p {
  color: #444;
  line-height: 1.85;
  margin-bottom: 10px;
}

.privacy-section ul {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
}

.privacy-section ul li {
  color: #444;
  line-height: 1.8;
  padding: 3px 0 3px 20px;
  position: relative;
}

.privacy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #002060;
}

.privacy-contact-card {
  background: #F5F4F0;
  border-left: 4px solid #002060;
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-contact-name {
  font-weight: 700;
  color: #002060;
  margin: 0;
  font-size: 1rem;
}

.privacy-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.privacy-contact-link i {
  color: #002060;
  width: 16px;
  text-align: center;
}

.privacy-contact-link:hover {
  color: #002060;
}
