
  :root {
    --navy: #0d2137;
    --ab-blue: #1f4f2b;
    --sky: #2b7a3e;
    --accent: #f4c542;
    --accent2: #4fb8c4;
    --bg: #f4f7fb;
    --card: #ffffff;
    --border: #dce5f0;
    --text: #0d2137;
    --muted: #5a7494;
    --green: #1c8a5e;
    --red: #c0392b;
    --shadow: 0 4px 24px rgba(13,33,55,0.10);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
  }

  /* HERO - Alberta Colors */
  .hero {
    background: linear-gradient(135deg, #ffffff 100%);
    padding: 30px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(244,197,66,0.10);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(79,184,196,0.10);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(244,197,66,0.18);
    color: var(--accent);
    border: 1px solid rgba(244,197,66,0.4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
  }
  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(26px, 5vw, 42px);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .hero h1 span { color:#4da6ff; }
  .hero p {
    color: #4da6ff;
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto;
    font-weight: 300;
  }

  /* YEAR SELECTOR */
  .year-strip {
    background: linear-gradient(135deg, #1e3a5f, #2c5a8c);
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0 24px;
  }
  .year-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    letter-spacing: 0.5px;
  }
  .year-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
  }
  .year-btn:hover:not(.active) {
    color: rgba(255,255,255,0.85);
  }

  /* MAIN LAYOUT */
  .main {
    max-width: 1080px;
    margin: 0 auto;
    padding: 36px 20px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
  }

  /* CARD */
  .card {
    background: var(--card);
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .card-head {
    background: linear-gradient(135deg, #1e3a5f, #2c5a8c);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .card-head-icon {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }
  .card-head h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 17px;
    color: #ffffff;
    font-weight: 400;
  }
  .card-body { padding: 24px; }

  /* FORM INPUTS */
  .section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--muted);
    margin: 20px 0 10px;
  }
  .section-label:first-child { margin-top: 0; }

  .field {
    margin-bottom: 14px;
    position: relative;
  }
  .field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
  }
  .tooltip-icon {
    width: 16px; height: 16px;
    background: var(--border);
    color: var(--muted);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
  }
  .tooltip-icon:hover .tooltip-text {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .tooltip-text {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    width: 150px;
    padding: 8px 10px;
    border-radius: 8px;
    opacity: 0; visibility: hidden;
    transition: all 0.2s;
    pointer-events: none;
    z-index: 99;
    white-space: normal;
    line-height: 1.5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }

  .input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
    background: #fafcff;
  }
  .input-wrap:focus-within {
    border-color: var(--sky);
    background: #fff;
  }
  .input-prefix {
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sky);
    background: rgba(43,122,62,0.07);
    height: 42px;
    display: flex; align-items: center;
    border-right: 1.5px solid var(--border);
    flex-shrink: 0;
  }
  .input-wrap input {
    border: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    padding: 0 14px;
    height: 42px;
    width: 100%;
    outline: none;
  }
  .input-wrap input::placeholder { color: #aab8c9; }

  /* RESULTS PANEL */
  .refund-box {
    text-align: center;
    padding: 22px 20px 18px;
    border-radius: 14px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
  }
  .refund-box.refund {
    background: linear-gradient(135deg, #e8f8f1, #d2f0e4);
    border: 1.5px solid #a8dfc4;
  }
  .refund-box.owing {
    background: linear-gradient(135deg, #fdecea, #fad8d5);
    border: 1.5px solid #f0a8a0;
  }
  .refund-box.neutral {
    background: linear-gradient(135deg, #eef3fa, #e2ecf8);
    border: 1.5px solid var(--border);
  }
  .refund-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .refund-box.refund .refund-label { color: var(--green); }
  .refund-box.owing .refund-label { color: var(--red); }
  .refund-box.neutral .refund-label { color: var(--muted); }

  .refund-amount {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    line-height: 1;
    transition: all 0.4s;
  }
  .refund-box.refund .refund-amount { color: var(--green); }
  .refund-box.owing .refund-amount { color: var(--red); }
  .refund-box.neutral .refund-amount { color: var(--muted); }

  .refund-sub {
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.7;
  }

  /* BREAKDOWN TABLE */
  .breakdown {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
  }
  .breakdown-row:last-child { border-bottom: none; }
  .breakdown-row:hover { background: #f7faff; }
  .breakdown-row.total {
    background: linear-gradient(90deg, rgba(31,79,43,0.04), rgba(43,122,62,0.04));
    border-top: 2px solid var(--border);
  }
  .breakdown-row.highlight {
    background: linear-gradient(90deg, #eef8ff, #e8f3ff);
  }
  .row-label {
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .row-label.bold { font-weight: 600; }
  .row-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .row-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-align: right;
  }
  .row-value.negative { color: var(--red); }
  .row-value.positive { color: var(--green); }

  /* RATE BADGES */
  .rate-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }
  .rate-box {
    background: linear-gradient(135deg, #1e3a5f, #2c5a8c);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
  }
  .rate-box-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
  }
  .rate-box-value {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    color: var(--accent);
    line-height: 1;
  }
  .rate-box-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 3px;
  }

  /* BRACKETS TABLE */
  .brackets-section {
    grid-column: 1 / -1;
    margin-top: 4px;
  }
  .brackets-title {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 16px;
    text-align: center;
  }
  .brackets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .brackets-card {
    background: var(--card);
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .brackets-card-head {
    background: linear-gradient(135deg, #1e3a5f, #2c5a8c);
    padding: 12px 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
  }
  .bracket-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
  }
  .bracket-table th {
    background: #f2f6fb;
    color: var(--muted);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 9px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
  }
  .bracket-table td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }
  .bracket-table tr:last-child td { border-bottom: none; }
  .bracket-table tr:nth-child(even) td { background: #fafcff; }
  .rate-pill {
    display: inline-block;
    background: rgba(43,122,62,0.10);
    color: #2b7a3e;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    font-size: 12px;
  }
  .rate-pill.active-bracket {
    background: #2b7a3e;
    color: #fff;
  }

  /* DISCLAIMER */
  .disclaimer {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 20px;
  }
  .disclaimer strong { color: var(--sky); }

  /* ANIMATIONS */
  @keyframes fadeSlide {
    from { opacity:0; transform: translateY(10px); }
    to { opacity:1; transform: translateY(0); }
  }
  .card { animation: fadeSlide 0.4s ease both; }
  .card:nth-child(2) { animation-delay: 0.1s; }

  /* RESPONSIVE */
  @media (max-width: 760px) {
    .main { grid-template-columns: 1fr; }
    .brackets-grid { grid-template-columns: 1fr; }
    .brackets-section { grid-column: 1; }
    .disclaimer { grid-column: 1; }
    .refund-amount { font-size: 34px; }
  }

/* ===== DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
    h1 { font-size: 36px !important; line-height: 1.3 !important; }
    h2 { font-size: 28px !important; line-height: 1.3 !important; }
    h3 { font-size: 22px !important; line-height: 1.3 !important; }
    h4 { font-size: 18px !important; line-height: 1.3 !important; }
    p  { font-size: 16px !important; line-height: 1.6 !important; }
    li { font-size: 16px !important; line-height: 1.6 !important; }
    label { font-size: 15px !important; }
    select, input, textarea { font-size: 15px !important; }
    button { font-size: 15px !important; }
}

/* ===== TABLET (768px - 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
    h1 { font-size: 30px !important; line-height: 1.3 !important; }
    h2 { font-size: 24px !important; line-height: 1.3 !important; }
    h3 { font-size: 20px !important; line-height: 1.3 !important; }
    h4 { font-size: 16px !important; line-height: 1.3 !important; }
    p  { font-size: 15px !important; line-height: 1.6 !important; }
    li { font-size: 15px !important; line-height: 1.6 !important; }
    label { font-size: 14px !important; }
    select, input, textarea { font-size: 14px !important; }
    button { font-size: 14px !important; }
}

/* ===== MOBILE (480px - 767px) ===== */
@media (max-width: 767px) {
    h1 { font-size: 24px !important; line-height: 1.25 !important; }
    h2 { font-size: 20px !important; line-height: 1.25 !important; }
    h3 { font-size: 17px !important; line-height: 1.25 !important; }
    h4 { font-size: 15px !important; line-height: 1.25 !important; }
    p  { font-size: 14px !important; line-height: 1.55 !important; }
    li { font-size: 14px !important; line-height: 1.55 !important; }
    label { font-size: 13px !important; }
    select, input, textarea { font-size: 13px !important; }
    button { font-size: 14px !important; }
}

/* ===== SMALL MOBILE (479px-) ===== */
@media (max-width: 479px) {
    h1 { font-size: 22px !important; line-height: 1.2 !important; }
    h2 { font-size: 18px !important; line-height: 1.2 !important; }
    h3 { font-size: 15px !important; line-height: 1.2 !important; }
    h4 { font-size: 13px !important; line-height: 1.2 !important; }
    p  { font-size: 13px !important; line-height: 1.5 !important; }
    li { font-size: 13px !important; line-height: 1.5 !important; }
    label { font-size: 12px !important; }
    select, input, textarea { font-size: 12px !important; }
    button { font-size: 13px !important; }
}
/* ===== H1 TOP SPACING & COLOR ===== */
@media (min-width: 1024px) {
    h1 { margin-top: 24px !important; color: #0072B0 !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    h1 { margin-top: 18px !important; color: #0072B0 !important; }
}

@media (max-width: 767px) {
    h1 { margin-top: 14px !important; color: #0072B0 !important; }
}

@media (max-width: 479px) {
    h1 { margin-top: 10px !important; color: #0072B0 !important; }
}
.footer-note {
            font-size: 0.75rem;
            color: #4b5f6b;
            margin-top: 24px;
            border-top: 1px solid #d4e0e9;
            padding-top: 16px;
            text-align: center;
        }
        .footer {
      max-width: 1100px;
      margin: 5px auto 5px;
      background: white;
      border-radius: 30px;
      padding: 2rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.02);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      font-size: 0.9rem;
      justify-content: center;
      padding: 20px;
    }

    .footer-links a {
      color: #1e2b3c;
      border-bottom: none;
      font-weight: 500;
      text-decoration: none;
    }

    .footer-links a:hover {
      color: red;
    }
.copyright {
            text-align: center;
            margin-top: 2px;
	        padding: 0px 0px 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 13px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        .related-tools {
            margin: 2rem 0;
            
            
        }

        .related-tools h3 {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .tools-grid {
            display: flex;
            flex-wrap: wrap;
            gap: .2rem;
            justify-content: center;
        }

        .tool-link {
            padding: 0.75rem 1.5rem;
            background: #f8f9fa;
            border: 1px solid #e1e4e8;
            border-radius: 8px;
            color: #333333;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .tool-link:hover {
            background: #0066cc;
            color: white;
            border-color: #0066cc;
        }

        
/* ============================================
   SEO CONTENT CSS - STANDALONE STYLES
   Does NOT conflict with root calculator CSS
   Use for all provincial tax calculator content
   ============================================ */

/* Content Container */
.seo-content-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
}

/* Typography */
.seo-content-container h1 {
    font-family: 'DM Serif Display', 'Georgia', serif;
    font-size: 36px;
    font-weight: 500;
    color: #4da6ff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.seo-content-container h2 {
    font-family: 'DM Serif Display', 'Georgia', serif;
    font-size: 28px;
    font-weight: 500;
    color: #4da6ff;
    margin: 16px 0 8px 0;
    padding-bottom: 8px;
    border-bottom: 3px solid #f4c542;
    display: inline-block;
}

.seo-content-container h3 {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #4da6ff;
    margin: 24px 0 12px 0;
    text-align: center;
}

.seo-content-container h4 {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0d2137;
    margin: 20px 0 10px 0;
}

.seo-content-container p {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
}

/* Lists */
.seo-content-container ul,
.seo-content-container ol {
    margin: 16px 0 20px 28px;
    padding: 0;
}

.seo-content-container li {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 8px;
}

.seo-content-container li strong {
    color: #1a4f2e;
}

/* Checkmark List (for features) */
.seo-content-container .checklist {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.seo-content-container .checklist li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.seo-content-container .checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2b7a3e;
    font-weight: bold;
    font-size: 18px;
}

/* Tax Rate Tables */
.seo-content-container .tax-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 28px 0;
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.seo-content-container .tax-table th {
    background: linear-gradient(135deg, #1e3a5f, #2c5a8c);
    color: #ffffff;
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
}

.seo-content-container .tax-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #1e293b;
    font-size: 14px;
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
}

.seo-content-container .tax-table tr:last-child td {
    border-bottom: none;
}

.seo-content-container .tax-table tr:nth-child(even) {
    background-color: #f1f5f9;
}

.seo-content-container .tax-table tr:hover {
    background-color: #eef2ff;
}

/* Rate Pill Badge */
.seo-content-container .rate-badge {
    display: inline-block;
    background: #e8f0e8;
    color: #2b7a3e;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
}

/* Note Box */
.seo-content-container .note-box {
    background: #fef9e6;
    border-left: 4px solid #f4c542;
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 12px;
}

.seo-content-container .note-box p {
    margin-bottom: 0;
    font-size: 14px;
    color: #5a4a1a;
}

.seo-content-container .note-box strong {
    color: #1a4f2e;
}

/* Warning Box */
.seo-content-container .warning-box {
    background: #fef2f2;
    border-left: 4px solid #c0392b;
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 12px;
}

.seo-content-container .warning-box p {
    margin-bottom: 0;
    font-size: 14px;
    color: #991b1b;
}

/* Info Box */
.seo-content-container .info-box {
    background: #e6f4ea;
    border-left: 4px solid #2b7a3e;
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 12px;
}

.seo-content-container .info-box p {
    margin-bottom: 0;
    font-size: 14px;
    color: #14532d;
}

/* CTA Button */
.seo-content-container .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a5f, #2c5a8c);
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    font-size: 16px;
    margin: 24px 0 16px 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.seo-content-container .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26,79,46,0.25);
    background: linear-gradient(135deg, #2b7a3e, #3e9c4a);
}

/* Two Column Layout for Content */
.seo-content-container .two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 32px 0;
}

@media (max-width: 768px) {
    .seo-content-container .two-column {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* FAQ Accordion */
.seo-content-container .faq-accordion {
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.seo-content-container .faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.seo-content-container .faq-item:last-child {
    border-bottom: none;
}

.seo-content-container .faq-question {
    width: 100%;
    padding: 18px 24px;
    background: #ffffff;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    color: #1a4f2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.seo-content-container .faq-question:hover {
    background: #f8fafc;
}

.seo-content-container .faq-question .faq-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #f4c542;
}

.seo-content-container .faq-item.active .faq-question .faq-icon {
    transform: rotate(180deg);
}

.seo-content-container .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 24px;
    background: #ffffff;
}

.seo-content-container .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.seo-content-container .faq-answer p {
    margin-bottom: 12px;
    font-size: 15px;
    color: #4a627a;
}

.seo-content-container .faq-answer a {
    color: #2b7a3e;
    text-decoration: none;
}

.seo-content-container .faq-answer a:hover {
    text-decoration: underline;
}

/* Highlight Text */
.seo-content-container .highlight {
    background: linear-gradient(120deg, #fef9e6 0%, #fef9e6 40%, transparent 60%);
    padding: 0 4px;
    font-weight: 600;
    color: #1a4f2e;
}

/* Numbered Steps */
.seo-content-container .steps {
    counter-reset: step-counter;
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.seo-content-container .steps li {
    counter-increment: step-counter;
    margin-bottom: 16px;
    padding-left: 48px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
}

.seo-content-container .steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1e3a5f, #2c5a8c);
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Responsive Tables */
@media (max-width: 640px) {
    .seo-content-container .tax-table,
    .seo-content-container .tax-table tbody,
    .seo-content-container .tax-table tr,
    .seo-content-container .tax-table td,
    .seo-content-container .tax-table th {
        display: block;
    }
    
    .seo-content-container .tax-table thead {
        display: none;
    }
    
    .seo-content-container .tax-table tr {
        margin-bottom: 16px;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .seo-content-container .tax-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .seo-content-container .tax-table td:last-child {
        border-bottom: none;
    }
    
    .seo-content-container .tax-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #1a4f2e;
        width: 45%;
    }
}

/* Disclaimer */
.seo-content-container .disclaimer {
    background: #f8fafc;
    padding: 16px 24px;
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid #e2e8f0;
}

/* Section Divider */
.seo-content-container .divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #f4c542, transparent);
    margin: 10px 0;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .seo-content-container {
        padding: 24px 16px;
    }
    
    .seo-content-container h1 {
        font-size: 28px;
    }
    
    .seo-content-container h2 {
        font-size: 22px;
    }
    
    .seo-content-container h3 {
        font-size: 18px;
    }
    
    .seo-content-container p,
    .seo-content-container li {
        font-size: 15px;
    }
    
    .seo-content-container .faq-question {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .seo-content-container .faq-item.active .faq-answer {
        padding: 0 20px 16px 20px;
    }
}

    @import url("https://fonts.googleapis.com/css?family=Playball");

    .mn-social-bottom-c {
        padding: 10px 0;
        text-align: center;
    }

    .mn-social-bottom-c p {
        margin: 0 0 20px;
        font-family: 'Playball', cursive;
        font-size: 28px;
        color: #0072B0;
    }

    .mn-social-bottom {
        background: #e8f4fd;
        width: 46px;
        height: 46px;
        box-sizing: border-box;
        padding-top: 13px;
        color: #0072B0;
        border-radius: 4px;
        margin: 0 7.5px 15px;
        transition: all .3s;
        font-size: 19px;
        display: inline-block;
        text-align: center;
        position: relative;
        text-decoration: none;
        cursor: pointer;
        border: none;
    }

    .mn-social-bottom:hover {
        background: #0072B0;
        color: #fff;
        top: -3px;
        box-shadow: 0 4px 10px rgba(0, 114, 176, 0.35);
    }

    #mn-social-bottom-hidden {
        display: none;
    }

    .fa-plus {
        transition: transform 0.3s;
    }

    .mn-social-r {
        transform: rotate(45deg);
    }