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

:root {
  --navy: #0B1D3A;
  --navy-light: #112D55;
  --navy-dark: #06111F;
  --gold: #C9A84C;
  --gold-light: #E0C872;
  --gold-dark: #A68A2E;
  --white: #FFFFFF;
  --off-white: #F4F5F7;
  --light-grey: #E8EAF0;
  --mid-grey: #9CA3AF;
  --text-grey: #6B7280;
  --text-dark: #1F2937;
  --success: #22C55E;
  --shadow-sm: 0 1px 3px rgba(11,29,58,0.08);
  --shadow-md: 0 4px 20px rgba(11,29,58,0.1);
  --shadow-lg: 0 10px 40px rgba(11,29,58,0.15);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1240px;
}

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

/* Skip-to-content — visually hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-grey); margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-icon { width: 48px; height: 48px; padding: 0; justify-content: center; border-radius: 50%; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy-dark); color: var(--mid-grey);
  padding: 10px 0; font-size: 0.8rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: var(--mid-grey); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar i { margin-right: 6px; color: var(--gold); }

/* ── HEADER / NAV ── */
header {
  background: var(--white); position: sticky; top: 0; z-index: 1000;
  transition: var(--transition);
}
header.scrolled { box-shadow: var(--shadow-md); }

.nav-wrapper {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.35rem;
  color: var(--navy); letter-spacing: -0.5px;
}
.logo-text span { color: var(--gold); }
.logo-sub { font-size: 0.65rem; color: var(--text-grey); text-transform: uppercase; letter-spacing: 2px; display: block; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.9rem;
  color: var(--text-dark); padding: 8px 0;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--gold); }
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: var(--transition);
}
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { width: 100%; }
.nav-badge-new { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.58rem; font-weight: 800; padding: 2px 7px; border-radius: 10px; vertical-align: middle; line-height: 1.4; letter-spacing: 0.02em; }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: 100%; left: -20px;
  background: var(--white); min-width: 280px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 16px 0; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--transition);
  border-top: 3px solid var(--gold);
}
.nav-links > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 24px; font-size: 0.88rem; color: var(--text-dark);
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--gold); }
.dropdown-menu a i { width: 20px; color: var(--gold); font-size: 0.85rem; }

.nav-cta { margin-left: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: var(--transition); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  background-size: 200% 200%;
  animation: heroGradient 8s ease infinite;
  color: var(--white); padding: 100px 0 120px; position: relative; overflow: hidden;
}
@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  animation: floatOrb 6s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  animation: floatOrb 8s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}
/* Hero staggered entrance */
.hero-badge { animation: fadeInUp 0.6s 0.2s both; }
.hero h1 { animation: fadeInUp 0.6s 0.4s both; }
.hero p { animation: fadeInUp 0.6s 0.6s both; }
.hero-btns { animation: fadeInUp 0.6s 0.8s both; }
.hero-stats { animation: fadeInUp 0.6s 1s both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); color: var(--gold);
  padding: 8px 18px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; margin-bottom: 24px; border: 1px solid rgba(201,168,76,0.3);
}
.hero h1 { color: var(--white); margin-bottom: 20px; font-weight: 900; }
.hero h1 .highlight { color: var(--gold); }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; max-width: 580px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; margin-top: 60px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 { color: var(--gold); font-size: 2rem; margin-bottom: 4px; }
.hero-stat p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white); padding: 30px 0;
  border-bottom: 1px solid var(--light-grey);
}
.trust-items { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item i { font-size: 1.5rem; color: var(--gold); }
.trust-item .trust-text strong { display: block; font-family: 'Inter',sans-serif; color: var(--navy); font-size: 0.95rem; }
.trust-item .trust-text span { font-size: 0.78rem; color: var(--text-grey); }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-light { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-header .label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-grey); }

/* ── CARDS ── */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 36px; box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid var(--light-grey);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--gold); font-size: 1.4rem;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.9rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-weight: 600; font-size: 0.88rem; margin-top: 16px;
}
.card-link:hover { gap: 12px; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); padding: 80px 0 60px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 0.85rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ── CONTENT LAYOUT ── */
.content-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.sidebar { position: sticky; top: 100px; }

/* ── FORMS ── */
.form-card {
  background: var(--white); padding: 36px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); border-top: 4px solid var(--gold);
}
.form-card h3 { margin-bottom: 20px; font-size: 1.25rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 0.88rem; color: var(--text-dark); }
.form-control {
  width: 100%; padding: 13px 16px; border: 1px solid var(--light-grey);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem;
  transition: var(--transition); background: var(--off-white);
}
.form-control:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ── FAQ ACCORDION ── */
.faq-item { border: 1px solid var(--light-grey); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; cursor: pointer; font-weight: 600; font-size: 0.95rem;
  color: var(--navy); background: var(--white); transition: var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question i { transition: var(--transition); color: var(--gold); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { padding: 0 24px 18px; max-height: 300px; }
.faq-answer p { font-size: 0.9rem; margin: 0; }

/* ── TESTIMONIALS ── */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
  min-width: 100%; padding: 40px; text-align: center; position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-size: 6rem; color: var(--gold); opacity: 0.15;
  font-family: Georgia, serif; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); line-height: 1;
}
.testimonial-card .quote {
  font-size: 1.1rem; font-style: italic; color: var(--text-dark);
  max-width: 700px; margin: 24px auto 24px; line-height: 1.8;
  position: relative;
}
.testimonial-card .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 4px; }
.testimonial-card .author { font-weight: 700; color: var(--navy); }
.testimonial-card .role { font-size: 0.85rem; color: var(--text-grey); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testimonial-dots .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--light-grey); cursor: pointer; transition: var(--transition);
}
.testimonial-dots .dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ── STATS COUNTER ── */
.stats-bar { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; padding: 40px 0; }
.stat-item { text-align: center; }
.stat-item .stat-number { font-family: 'Inter',sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--gold); }
.stat-item .stat-label { font-size: 0.85rem; color: var(--text-grey); margin-top: 4px; }

/* ── PROCESS STEPS ── */
.process-steps { display: flex; gap: 24px; counter-reset: step; flex-wrap: wrap; }
.process-step {
  flex: 1; min-width: 200px; text-align: center; padding: 24px;
  position: relative;
}
.process-step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-family: 'Inter',sans-serif; font-weight: 800; font-size: 1.1rem;
  margin: 0 auto 16px;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-widget h4 { color: var(--white); margin-bottom: 20px; font-size: 1rem; }
.footer-widget p { font-size: 0.88rem; }
.footer-widget ul li { margin-bottom: 10px; }
.footer-widget ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer-widget ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); display: flex;
  align-items: center; justify-content: center; color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-bottom {
  text-align: center; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1001; width: 0%; transition: width 0.1s linear;
}

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero-stats { gap: 32px; }
}

@media (max-width: 768px) {
  h1 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
    background: var(--white); flex-direction: column; padding: 80px 40px 40px;
    box-shadow: var(--shadow-lg); gap: 0; z-index: 1001;
  }
  .nav-links.open { right: 0; display: flex; }
  .nav-links > li > a { padding: 14px 0; font-size: 1.1rem; display: block; border-bottom: 1px solid var(--light-grey); }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding: 8px 0 8px 16px;
    opacity: 1; visibility: visible; transform: none; border-top: none; min-width: auto; }
  .dropdown-menu a { padding: 12px 16px; font-size: 0.95rem; }
  .hamburger { display: flex; z-index: 1002; }
  .nav-cta { display: none; }
  .top-bar-left { display: none; }
  .hero { padding: 60px 0 80px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stats-bar { gap: 32px; }
  .process-steps { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .trust-items { gap: 24px; }
}

@media (max-width: 400px) {
  h1 { font-size: clamp(1.5rem, 8vw, 1.75rem); }
  .card { padding: 24px; }
}

/* ── MOBILE STICKY CTA ── */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); padding: 12px 16px; z-index: 998;
  justify-content: center; gap: 12px;
  box-shadow: 0 -4px 16px rgba(11,29,58,0.3);
}
@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  .whatsapp-float { bottom: 84px; }
}

/* ── Blog post base styles (shared across all blog-*.html pages) ── */
.blog-hero{position:relative;border-radius:12px;overflow:hidden;margin-bottom:40px;box-shadow:0 10px 30px rgba(0,0,0,0.1)}
.blog-hero img{width:100%;height:400px;object-fit:cover;display:block}
.blog-hero-overlay{position:absolute;bottom:0;left:0;width:100%;padding:40px;background:linear-gradient(transparent,rgba(0,0,0,0.88));color:white}
.blog-category-badge{display:inline-block;background:var(--gold);color:white;padding:4px 12px;border-radius:20px;font-size:0.8rem;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:16px}
.blog-content{font-size:1.1rem;line-height:1.9;color:#444}
.blog-content h2{margin-top:48px;margin-bottom:20px;font-size:1.8rem;color:var(--navy);border-bottom:2px solid var(--off-white);padding-bottom:10px}
.blog-content h3{margin-top:32px;margin-bottom:16px;font-size:1.4rem;color:var(--navy)}
.blog-content p{margin-bottom:24px}
.blog-content ul,.blog-content ol{margin-bottom:32px;background:var(--off-white);padding:24px 24px 24px 48px;border-radius:8px}
.blog-content li{margin-bottom:12px}
.drop-cap::first-letter{float:left;font-size:3.5rem;line-height:0.8;margin-right:12px;color:var(--gold);font-weight:bold}
.blog-quote{font-size:1.3rem;font-style:italic;color:var(--navy);border-left:4px solid var(--gold);padding:20px 32px;margin:40px 0;background:linear-gradient(90deg,var(--off-white),transparent);position:relative}
.blog-quote::before{content:'\201C';font-size:4rem;color:rgba(201,168,76,0.2);position:absolute;left:10px;top:-10px;font-family:serif}
.share-bar{display:flex;align-items:center;gap:16px;margin-top:48px;padding-top:24px;border-top:1px solid var(--light-grey)}
.share-btn{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--off-white);color:var(--navy);text-decoration:none;transition:0.3s}
.share-btn:hover{background:var(--gold);color:white;transform:translateY(-3px)}
.author-box{display:flex;align-items:center;gap:20px;margin-top:32px;padding:32px;background:var(--off-white);border-radius:12px}
