:root {
  --navy: #1B3A5C;
  --navy-dark: #142d47;
  --accent: #2E86AB;
  --accent-light: #e8f4f8;
  --green: #27ae60;
  --orange: #f39c12;
  --text-dark: #1a1a2e;
  --text-body: #4a4a5a;
  --text-light: #4b5563;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-warm: #fafaf8;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Top Bar */
.top-bar { background: var(--navy); color: #fff; font-size: 0.85rem; padding: 8px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: #cde; }
.top-bar a:hover { color: #fff; }

/* Header */
.site-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; padding: 12px 0; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-link img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-dark); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent); }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff !important; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.25s; text-decoration: none; }
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--navy) !important; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; border: 2px solid var(--navy); cursor: pointer; transition: all 0.25s; text-decoration: none; }
.btn-outline:hover { background: var(--navy); color: #fff !important; }
.btn-phone { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff !important; padding: 12px 24px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.25s; }
.btn-phone:hover { background: #219a52; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #1e4a6e 50%, var(--accent) 100%); color: #fff; padding: 80px 0 90px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); border-radius: 50%; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 20px; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.92); max-width: 620px; margin-bottom: 32px; line-height: 1.7; }
.hero .btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.hero .breadcrumb a { color: rgba(255,255,255,0.9); }
.hero .breadcrumb a:hover { color: #fff; }

/* Trust Bar */
.trust-bar { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-bar .container { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-light); font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

/* Sections */
.section { padding: 70px 0; }
.section-alt { background: var(--bg-light); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header p { margin-top: 12px; font-size: 1.05rem; color: var(--text-light); }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 10px; }

/* Content Layout (2-column: main + sidebar) */
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.content-main h2 { margin-top: 40px; margin-bottom: 16px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin-top: 28px; margin-bottom: 12px; }
.content-main p { margin-bottom: 16px; }
.content-main ul, .content-main ol { margin-bottom: 16px; padding-left: 24px; }
.content-main li { margin-bottom: 8px; }

/* Sidebar */
.sidebar-cta { background: linear-gradient(135deg, var(--navy), var(--accent)); color: #fff; padding: 32px; border-radius: var(--radius-lg); margin-bottom: 24px; }
.sidebar-cta h3 { color: #fff; margin-bottom: 12px; }
.sidebar-cta p { color: rgba(255,255,255,0.92); font-size: 0.95rem; margin-bottom: 20px; }
.sidebar-cta .btn-primary { background: #fff; color: var(--navy) !important; width: 100%; justify-content: center; }
.sidebar-cta .btn-primary:hover { background: #f0f0f0; }
.sidebar-cta .phone-link { display: block; text-align: center; margin-top: 12px; color: rgba(255,255,255,0.95); font-weight: 600; }
.sidebar-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.sidebar-box h4 { margin-bottom: 12px; font-size: 1.05rem; }
.sidebar-box ul { list-style: none; padding: 0; }
.sidebar-box li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.sidebar-box li:last-child { border: none; }
.sidebar-box li a { color: var(--text-body); }
.sidebar-box li a:hover { color: var(--accent); }

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; background: #fff; border: none; padding: 18px 24px; text-align: left; font-size: 1rem; font-weight: 600; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.faq-question:hover { background: var(--bg-light); }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform 0.3s; }
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer { padding: 0 24px 18px; display: none; font-size: 0.95rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%); color: #fff; padding: 60px 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.92); max-width: 600px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-banner .btn-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-banner .btn-primary { background: #fff; color: var(--navy) !important; }
.cta-banner .btn-primary:hover { background: #f0f0f0; }

/* Footer */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.85); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.82rem; }

/* Blog Content Styling */
.blog-meta { font-size: 0.85rem; color: var(--text-light); margin-bottom: 24px; }
.blog-content { font-size: 1.05rem; line-height: 1.85; }
.blog-content h2 { font-size: 1.6rem; margin-top: 48px; }
.blog-content h3 { font-size: 1.25rem; margin-top: 36px; }
.blog-content blockquote { border-left: 4px solid var(--accent); padding: 16px 24px; background: var(--bg-light); margin: 24px 0; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; }
.blog-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.95rem; }
.blog-content th { background: var(--navy); color: #fff; padding: 12px 16px; text-align: left; }
.blog-content td { padding: 10px 16px; border-bottom: 1px solid var(--border); }
.blog-content tr:nth-child(even) { background: var(--bg-light); }

/* Mobile */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { padding: 50px 0 60px; }
  .content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar .container { gap: 20px; }
}
