   /* ─────────────────────────────────────────
       CSS VARIABLES & RESET
    ───────────────────────────────────────── */
    :root {
      --solar-orange: #f97316;
      --solar-amber:  #fbbf24;
      --solar-dark:   #0f1a2e;
      --solar-navy:   #162236;
      --solar-mid:    #1e3a5f;
      --solar-light:  #e8f4fd;
      --solar-white:  #ffffff;
      --solar-gray:   #64748b;
      --solar-green:  #22c55e;
      --gradient-hero: linear-gradient(135deg, #0f1a2e 0%, #1e3a5f 60%, #162236 100%);
      --gradient-orange: linear-gradient(135deg, #f97316, #fbbf24);
      --shadow-card: 0 8px 32px rgba(0,0,0,0.12);
      --shadow-orange: 0 4px 24px rgba(249,115,22,0.35);
      --radius-lg: 1.25rem;
      --radius-xl: 2rem;
      font-family: 'DM Sans', sans-serif;
    }

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

    body {
      background: #f8fafc;
      color: var(--solar-dark);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
    }
 a {
  color: var(--solar-orange);
  text-decoration: none;
}
    /* ─────────────────────────────────────────
       NAVBAR
    ───────────────────────────────────────── */
    .navbar-solar {
      background: rgba(15, 26, 46, 0.97);
      backdrop-filter: blur(12px);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: padding 0.3s;
    }
    .navbar-solar.scrolled { padding: 0.6rem 0; }

    .navbar-brand-logo {
      font-family: 'Outfit', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--solar-white) !important;
      letter-spacing: -0.02em;
    }
    .navbar-brand-logo span { color: var(--solar-orange); }

    .navbar-solar .nav-link {
      color: rgba(255,255,255,0.8) !important;
      font-weight: 500;
      font-size: 0.93rem;
      padding: 0.5rem 1rem !important;
      transition: color 0.2s;
      position: relative;
    }
    .navbar-solar .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; right: 50%;
      height: 2px;
      background: var(--solar-orange);
      transition: left 0.25s, right 0.25s;
      border-radius: 2px;
    }
    .navbar-solar .nav-link:hover { color: #fff !important; }
    .navbar-solar .nav-link:hover::after { left: 1rem; right: 1rem; }

    .btn-cta-nav {
      background: var(--gradient-orange);
      color: #fff !important;
      border: none;
      border-radius: 50px;
      padding: 0.5rem 1.4rem !important;
      font-weight: 600;
      font-size: 0.9rem;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: var(--shadow-orange);
    }
    .btn-cta-nav:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 30px rgba(249,115,22,0.45);
    }
    @media (max-width: 768px) {
        .navbar-solar .nav-link {          
          font-size: 1.2rem;
          padding: 0.7rem 1rem !important;          
            text-align: center;
        } 
    .btn-cta-nav {
        margin-top:20px;
        width: 100%; 
        font-size: 1.2rem;
    }        
}
    .navbar-toggler {
      border: none;
      color: #fff;
    }
    .navbar-toggler:focus { box-shadow: none; }

    /* ─────────────────────────────────────────
       HERO SECTION
    ───────────────────────────────────────── */
    .hero-section {
      background: var(--gradient-hero);
      min-height: 60vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 5rem 0 4rem;
    }

    /* animated sun rays background */
    .hero-section::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 65%);
      border-radius: 50%;
      animation: pulse-glow 4s ease-in-out infinite;
    }
    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -150px; left: -150px;
      width: 500px; height: 300px;
      background: radial-gradient(circle, rgba(251,191,36,0.10) 0%, transparent 65%);
      border-radius: 50%;
      animation: pulse-glow 5s ease-in-out infinite reverse;
    }
    @keyframes pulse-glow {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.7; }
    }

    .hero-section .hero-grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(249,115,22,0.15);
      border: 1px solid rgba(249,115,22,0.3);
      color: var(--solar-amber);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 1.25rem;
    }
    .hero-title .accent { color: var(--solar-orange); }

    .hero-subtitle {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 2rem;
      font-weight: 400;
    }

    .hero-phone {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      color: var(--solar-amber);
      font-size: 3rem;
      font-weight: 700;
      font-family: 'Outfit', sans-serif;
      text-decoration: none;
      transition: color 0.2s;
    }
    .hero-phone:hover { color: var(--solar-orange); }

    /* Hero Form Card */
    .hero-form-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(20px);
      border-radius: var(--radius-xl);
      padding: 2.5rem;
      position: relative;
      z-index: 2;
    }

    .form-label-hero {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 0.4rem;
    }

    .form-control-hero {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: #fff;
      border-radius: 0.75rem;
      padding: 0.9rem 1.1rem;
      font-size: 0.95rem;
      transition: border-color 0.2s, background 0.2s;
    }
    .form-control-hero::placeholder { color: rgba(255,255,255,0.35); }
    .form-control-hero:focus {
      background: rgba(255,255,255,0.12);
      border-color: var(--solar-orange);
      color: #fff;
      box-shadow: 0 0 0 3px rgba(249,115,22,0.2);
    }

    .btn-solar-primary {
      background: var(--gradient-orange);
      border: none;
      color: #fff;
      font-weight: 700;
      font-family: 'Outfit', sans-serif;
      letter-spacing: 0.04em;
      padding: 0.9rem 2rem;
      border-radius: 0.75rem;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: var(--shadow-orange);
      width: 100%;
    }
    .btn-solar-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(249,115,22,0.5);
      color: #fff;
    }

    /* Hero image */
    .hero-img-wrap {
      position: relative;
      z-index: 2;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0,0,0,0.5);
      margin-top: 2rem;
    }
    .hero-img-wrap img {
      width: 100%;
      display: block;
      border-radius: var(--radius-xl);
    }

    /* ─────────────────────────────────────────
       SECTION TYPOGRAPHY
    ───────────────────────────────────────── */
    .section-eyebrow {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--solar-orange);
      margin-bottom: 0.75rem;
      padding: 0.3rem 0.9rem;
      background: rgba(249,115,22,0.1);
      border-radius: 50px;
      border: 1px solid rgba(249,115,22,0.2);
    }

    .section-title {
      font-size: clamp(1.7rem, 3.5vw, 2.6rem);
      font-weight: 800;
      line-height: 1.2;
      color: var(--solar-dark);
      letter-spacing: -0.02em;
    }
    .section-title.light { color: #fff; }

    /* ─────────────────────────────────────────
       ABOUT / INTRO SECTION
    ───────────────────────────────────────── */
    .intro-section { padding: 5rem 0; background: #fff; }

    .intro-section p { color: var(--solar-gray); line-height: 1.75; font-size: 1rem; }
    .intro-section strong { color: var(--solar-dark); }

    /* ─────────────────────────────────────────
       STATS BAR
    ───────────────────────────────────────── */
    .stats-section {
      background: var(--gradient-hero);
      padding: 3.5rem 0;
    }

    .stat-item { text-align: center; position: relative; }
    .stat-item + .stat-item::before {
      content: '';
      position: absolute;
      left: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: rgba(255,255,255,0.1);
    }

    .stat-value {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 900;
      background: var(--gradient-orange);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .stat-label {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.65);
      font-weight: 500;
      letter-spacing: 0.02em;
    }

    /* ─────────────────────────────────────────
       BENEFITS SECTION
    ───────────────────────────────────────── */
    .benefits-section { padding: 5.5rem 0; background: var(--solar-light); }

    .benefit-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      height: 100%;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(0,0,0,0.05);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }
    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gradient-orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }
    .benefit-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.13); }
    .benefit-card:hover::before { transform: scaleX(1); }

    .benefit-icon {
      width: 56px; height: 56px;
      background: rgba(249,115,22,0.1);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      color: var(--solar-orange);
      margin-bottom: 1.25rem;
    }

    .benefit-card h5 {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--solar-orange);
      margin-bottom: 0.6rem;
    }
    .benefit-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--solar-dark);
      margin-bottom: 1rem;
    }
    .benefit-card p { color: var(--solar-gray); font-size: 0.93rem; line-height: 1.7; margin: 0; }

    .benefit-img {
      width: 100%; height: 220px;
      object-fit: cover;
      border-radius: 0.75rem;
      margin-bottom: 1.25rem;
    }

    /* ─────────────────────────────────────────
       N-TYPE SECTION (dark bg)
    ───────────────────────────────────────── */
    .ntype-section {
      background: var(--solar-navy);
      padding: 5.5rem 0;
      position: relative;
      overflow: hidden;
    }
    .ntype-section::before {
      content: '';
      position: absolute;
      right: -100px; top: 50%;
      transform: translateY(-50%);
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(249,115,22,0.12), transparent 65%);
      border-radius: 50%;
    }

    .ntype-feature {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }
    .ntype-feature-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: rgba(249,115,22,0.15);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--solar-orange);
      font-size: 1rem;
    }
    .ntype-feature-text { color: rgba(255,255,255,0.8); font-size: 0.93rem; line-height: 1.6; }

    /* ─────────────────────────────────────────
       PROCESS / MONTAŻ
    ───────────────────────────────────────── */
    .process-section { padding: 5.5rem 0; background: #fff; }

    .process-card {
      background: var(--solar-light);
      border-radius: var(--radius-lg);
      padding: 2rem;
      height: 100%;
      border: 1px solid rgba(0,0,0,0.06);
      transition: background 0.3s, transform 0.3s;
      position: relative;
    }
    .process-card:hover { background: #fff; transform: translateY(-4px); box-shadow: var(--shadow-card); }

    .process-number {
      font-family: 'Outfit', sans-serif;
      font-size: 3rem;
      font-weight: 900;
      background: var(--gradient-orange);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 0.5rem;
      opacity: 0.3;
    }
    .process-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--solar-dark); margin-bottom: 0.6rem; }
    .process-card p { font-size: 0.9rem; color: var(--solar-gray); margin: 0; line-height: 1.65; }

    /* ─────────────────────────────────────────
       WHY US
    ───────────────────────────────────────── */
    .whyus-section {
      background: var(--solar-light);
      padding: 5.5rem 0;
    }

    .whyus-list { list-style: none; padding: 0; margin: 0; }
    .whyus-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.9rem;
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      font-size: 0.95rem;
      color: var(--solar-dark);
      line-height: 1.55;
    }
    .whyus-list li:last-child { border-bottom: none; }
    .whyus-list li i {
      width: 22px; height: 22px; flex-shrink: 0;
      background: var(--gradient-orange);
      border-radius: 50%;
      color: #fff;
      font-size: 0.7rem;
      display: flex; align-items: center; justify-content: center;
      margin-top: 2px;
    }

    /* ─────────────────────────────────────────
       TESTIMONIALS
    ───────────────────────────────────────── */
    .testimonials-section { padding: 5.5rem 0; background: #fff; }

    .testimonial-card {
      background: var(--solar-light);
      border-radius: var(--radius-lg);
      padding: 2rem;
      height: 100%;
      border: 1px solid rgba(0,0,0,0.06);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .testimonial-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }

    .stars { color: var(--solar-amber); font-size: 1rem; margin-bottom: 0.75rem; }
    .testimonial-score {
      font-weight: 700;
      color: var(--solar-dark);
      font-size: 0.85rem;
      margin-left: 4px;
    }

    .testimonial-text {
      font-size: 0.93rem;
      color: var(--solar-gray);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 1.25rem;
    }

    .testimonial-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--solar-amber);
    }
    .testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--solar-dark); }
    .testimonial-city { font-size: 0.8rem; color: var(--solar-gray); }

    /* ─────────────────────────────────────────
       CONTACT SECTION
    ───────────────────────────────────────── */
    .contact-section {
      background: var(--gradient-hero);
      padding: 5.5rem 0;
      position: relative;
      overflow: hidden;
    }
    .contact-section::before {
      content: '';
      position: absolute;
      left: -150px; top: -150px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(249,115,22,0.15), transparent 65%);
      border-radius: 50%;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1.1rem;
      margin-bottom: 1.6rem;
    }
    .contact-info-icon {
      width: 46px; height: 46px; flex-shrink: 0;
      background: rgba(249,115,22,0.15);
      border: 1px solid rgba(249,115,22,0.25);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--solar-amber);
      font-size: 1.1rem;
    }
    .contact-info-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.2rem; }
    .contact-info-value { color: #fff; font-weight: 500; font-size: 0.97rem; }
    .contact-info-value a { color: var(--solar-amber); text-decoration: none; transition: color 0.2s; }
    .contact-info-value a:hover { color: var(--solar-orange); }

    .contact-form-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(16px);
      border-radius: var(--radius-xl);
      padding: 2.5rem;
    }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    .footer {
      background: #0a1220;
      padding: 3rem 0 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-brand {
      font-family: 'Outfit', sans-serif;
      font-size: 1.3rem;
      font-weight: 800;
      color: #fff;
    }
    .footer-brand span { color: var(--solar-orange); }
    .footer p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.6; }

    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li {
      margin-bottom: 0.5rem;
      color: rgba(255,255,255,0.65);
      font-size: 0.9rem;
      line-height: 1.55;
    }
    .footer-links a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--solar-orange); }

    .footer-divider { border-color: rgba(255,255,255,0.08); margin: 2rem 0 1.5rem; }
    .footer-copy { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
    .footer-copy a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
    .footer-copy a:hover { color: var(--solar-orange); }

    /* ─────────────────────────────────────────
       SCROLL TO TOP
    ───────────────────────────────────────── */
    #scrollTopBtn {
      position: fixed;
      bottom: 2rem; right: 2rem;
      width: 48px; height: 48px;
      background: var(--gradient-orange);
      border: none; border-radius: 50%;
      color: #fff; font-size: 1.2rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      opacity: 0; transform: translateY(10px);
      transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s;
      box-shadow: var(--shadow-orange);
      z-index: 999;
    }
    #scrollTopBtn.visible { opacity: 1; transform: translateY(0); }
    #scrollTopBtn:hover { box-shadow: 0 8px 28px rgba(249,115,22,0.55); }

    /* ─────────────────────────────────────────
       REVEAL ANIMATION
    ───────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* notification toast */
    .form-toast {
      position: fixed;
      bottom: 2rem; left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--solar-green);
      color: #fff;
      padding: 0.85rem 1.75rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      opacity: 0;
      transition: opacity 0.35s, transform 0.35s;
      pointer-events: none;
      z-index: 9999;
    }
    .form-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

    /* ─────────────────────────────────────────
       RESPONSIVE TWEAKS
    ───────────────────────────────────────── */
    @media (max-width: 768px) {
      .stat-item + .stat-item::before { display: none; }
      .hero-section { padding-top: 4rem; }
    }
/* ─── NAGŁÓWEK PODSTRONY (mini-hero) ─── */
    .page-header {
      background: var(--gradient-hero);
      padding: 4rem 0 3.5rem;
      position: relative;
      overflow: hidden;
    }
    .page-header::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 65%);
      border-radius: 50%;
    }
    .page-header-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    /* Breadcrumb */
    .breadcrumb-solar .breadcrumb-item a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s;
    }
    .breadcrumb-solar .breadcrumb-item a:hover { color: var(--solar-amber); }
    .breadcrumb-solar .breadcrumb-item.active { color: var(--solar-amber); font-size: 0.85rem; }
    .breadcrumb-solar .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

    .page-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.02em;
      margin: 0.75rem 0 0;
    }
    .page-title .accent { color: var(--solar-orange); }
    /* ─── TREŚĆ PODSTRONY ─── */
    .page-content {
      padding: 4rem 0 5rem;
      background: #fff;
      min-height: 60vh;
    }

    /* Pomocnicze style typografii dla treści podstron */
    .content-area h2 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--solar-dark);
      margin: 2.5rem 0 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--solar-light);
    }
    .content-area h2:first-child { margin-top: 0; }
    .content-area h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--solar-mid);
      margin: 1.75rem 0 0.6rem;
    }
    .content-area p {
      color: var(--solar-gray);
      line-height: 1.8;
      font-size: 0.97rem;
      margin-bottom: 1rem;
    }
    .content-area ul, .content-area ol {
      color: var(--solar-gray);
      line-height: 1.8;
      font-size: 0.97rem;
      padding-left: 1.5rem;
      margin-bottom: 1rem;
    }
    .content-area a {
      color: var(--solar-orange);
      text-decoration: none;
    }
    .content-area a:hover { text-decoration: underline; }
    .content-area strong { color: var(--solar-dark); }

    /* Pogrubiona ramka informacyjna */
    .content-area .info-box {
      background: var(--solar-light);
      border-left: 4px solid var(--solar-orange);
      border-radius: 0 0.75rem 0.75rem 0;
      padding: 1.25rem 1.5rem;
      margin: 1.75rem 0;
    }
    .content-area .info-box p { margin: 0; color: var(--solar-dark); }