/* ==========================================================================
   SignPdfDoc.com - Global Stylesheet
   Modern, Lightweight, Accessible, Production-Ready CSS
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary: #D32F2F;
  --primary-hover: #B71C1C;
  --primary-dark: #8E0000;
  --primary-light: #FFEBEE;
  --primary-border: #FFCDD2;
  --primary-glow: rgba(211, 47, 47, 0.16);

  /* Neutral & Charcoal Palette */
  --charcoal-900: #0F172A;
  --charcoal-800: #1E293B;
  --charcoal-700: #334155;
  --charcoal-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --surface-white: #FFFFFF;

  /* Functional Colors */
  --success: #16A34A;
  --success-bg: #DCFCE7;
  --info: #0284C7;
  --info-bg: #E0F2FE;
  --warning: #D97706;
  --warning-bg: #FEF3C7;

  /* Layout & Spacing */
  --container-max: 1200px;
  --container-narrow: 840px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Elevation Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.04);

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--charcoal-800);
  background-color: var(--slate-50);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--charcoal-800);
  background-color: var(--slate-50);
  overflow-x: hidden;
}

/* Focus styles for keyboard accessibility */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Skip to Content for Screen Readers */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--charcoal-900);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  color: var(--charcoal-900);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--charcoal-700);
  margin-bottom: 1rem;
  line-height: 1.65;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-xs);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none !important;
}

.brand-logo img {
  height: 42px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  color: var(--charcoal-700);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem;
  position: relative;
  text-decoration: none !important;
  transition: color 0.15s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  background-color: #fff;
  color: var(--charcoal-800);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.lang-btn:hover {
  background-color: var(--slate-50);
  border-color: var(--slate-400);
}

.lang-btn svg {
  width: 14px;
  height: 14px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background-color: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 150px;
  list-style: none;
  padding: 0.35rem 0;
  display: none;
  z-index: 1010;
}

.lang-selector:focus-within .lang-dropdown,
.lang-dropdown.show {
  display: block;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: var(--charcoal-700);
  font-size: 0.875rem;
  text-decoration: none !important;
  font-weight: 500;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.45rem;
  cursor: pointer;
  color: var(--charcoal-800);
  transition: all 0.15s ease;
  line-height: 0;
}

.mobile-toggle:hover,
.mobile-toggle[aria-expanded="true"] {
  background-color: var(--slate-100);
  color: var(--primary);
}

.mobile-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.15s ease;
  line-height: 1.25;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #fff;
  color: var(--charcoal-800);
  border-color: var(--slate-300);
}

.btn-secondary:hover {
  background-color: var(--slate-50);
  border-color: var(--slate-400);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  color: var(--primary-hover);
}

.btn-lg {
  font-size: 1.125rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-md);
}

/* Hero Section */
.hero {
  padding: 3rem 0 2rem;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--slate-50) 100%);
  border-bottom: 1px solid var(--slate-200);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid var(--primary-border);
}

.hero h1 {
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--charcoal-600);
  max-width: 680px;
  margin: 0 auto 1.75rem;
}

.hero-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.hero-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-700);
}

.hero-feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--success);
}

/* Live Tool Container in Hero / Workspace */
.tool-section {
  padding: 1.5rem 0 3.5rem;
}

/* How It Works Section */
.section {
  padding: 4.5rem 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-tag {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--charcoal-600);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  background-color: var(--surface-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.step-card h3 {
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--charcoal-600);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Feature Showcase Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background-color: var(--surface-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-box svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.925rem;
  color: var(--charcoal-600);
  margin-bottom: 0;
}

/* Privacy & Security Callout */
.security-banner {
  background-color: #0F172A;
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-xl);
}

.security-content h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.security-content p {
  color: var(--slate-300);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.security-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sec-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #E2E8F0;
  font-size: 0.9rem;
  font-weight: 500;
}

.sec-badge svg {
  color: #4ADE80;
  width: 20px;
  height: 20px;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--surface-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.faq-item[open] {
  border-color: var(--primary-border);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--slate-500);
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "−";
  color: var(--primary);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--charcoal-700);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* AdSense Non-Intrusive Container Placeholders */
.ad-slot {
  margin: 2.5rem auto;
  text-align: center;
  max-width: 970px;
  min-height: 90px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Prose & Editorial Guides (SEO Pages) */
.prose-content {
  background-color: var(--surface-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}

.prose-content h1 {
  margin-bottom: 1rem;
}

.prose-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--slate-200);
}

.prose-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.prose-content ul, 
.prose-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.prose-content li {
  margin-bottom: 0.5rem;
  color: var(--charcoal-700);
  line-height: 1.6;
}

.prose-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.prose-content th, 
.prose-content td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-200);
  text-align: left;
}

.prose-content th {
  background-color: var(--slate-100);
  font-weight: 600;
  color: var(--charcoal-900);
}

.info-callout {
  background-color: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.75rem 0;
}

.info-callout p:last-child {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background-color: #0F172A;
  color: var(--slate-300);
  padding: 4rem 0 2rem;
  margin-top: auto;
  border-top: 1px solid #1E293B;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--slate-400);
  font-size: 0.925rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--slate-400);
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid #1E293B;
  font-size: 0.875rem;
  color: var(--slate-400);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-lang-list {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

.footer-lang-list a {
  color: var(--slate-400);
  text-decoration: none !important;
}

.footer-lang-list a:hover,
.footer-lang-list a.active {
  color: #fff;
  font-weight: 600;
}

/* Form Styles for Contact */
.contact-form {
  display: grid;
  gap: 1.25rem;
  max-width: 600px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal-900);
}

.form-control {
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background-color: #fff;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background-color: var(--charcoal-900);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: toastIn 0.25s ease-out;
}

@keyframes toastIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .site-header .container {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 0.5rem;
    min-width: 0;
  }

  .brand-logo {
    display: flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 1;
  }

  .brand-logo img {
    height: 32px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    min-width: 0;
  }

  /* Hide desktop CTA button on mobile so it never forces header overflow */
  .header-actions .btn,
  #headerCtaBtn {
    display: none !important;
  }

  .lang-selector {
    flex-shrink: 0;
  }

  .lang-btn {
    padding: 0.35rem 0.55rem;
    font-size: 0.8rem;
    gap: 0.25rem;
    height: 38px;
    box-sizing: border-box;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    color: var(--charcoal-800);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-sizing: border-box;
  }

  .mobile-toggle:hover,
  .mobile-toggle[aria-expanded="true"] {
    background-color: var(--slate-100);
    color: var(--primary);
    border-color: var(--slate-300);
  }

  .main-nav.open {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    border-bottom: 1px solid var(--slate-200);
    padding: 1rem 1.25rem;
    box-shadow: 0 14px 28px -4px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 10001;
    animation: mobileNavFade 0.18s ease-out;
  }

  .main-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .main-nav.open .nav-links li {
    width: 100%;
  }

  .main-nav.open .nav-link {
    display: block;
    width: 100%;
    padding: 0.75rem 0.85rem;
    font-size: 0.975rem;
    font-weight: 500;
    color: var(--charcoal-800);
    border-radius: var(--radius-sm);
    transition: background-color 0.15s ease, color 0.15s ease;
  }

  .main-nav.open .nav-link:hover,
  .main-nav.open .nav-link.active {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
  }

  .main-nav.open .nav-link.active::after {
    display: none;
  }

  @keyframes mobileNavFade {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .security-banner {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .prose-content {
    padding: 2rem 1.25rem;
  }
}
