@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap");
/* Nimbus Sans L webfont (NimbusPoint-style) */
@import url("https://fonts.cdnfonts.com/css/nimbus-sans-l");

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

html,
body {
  height: 100%;
}

/* BODY FONT NOW NIMBUS SANS L EVERYWHERE */
body {
  font-family: "Nimbus Sans L", "NimbusSanL", "Inter", -apple-system,
    BlinkMacSystemFont, system-ui, sans-serif;
  line-height: 1.8;
  font-size: 17px;
  color: #111827;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  overflow-x: hidden;
  position: relative;
}

/* Global glassy aurora background */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(129, 140, 248, 0.35),
      transparent 55%
    ),
    radial-gradient(circle at 80% 15%, rgba(236, 72, 153, 0.3), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(45, 212, 191, 0.3), transparent 55%),
    radial-gradient(
      circle at 85% 75%,
      rgba(56, 189, 248, 0.28),
      transparent 55%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(148, 163, 184, 0.35),
      transparent 65%
    );
  background-repeat: no-repeat;
  filter: blur(0px);
  opacity: 0.85;
  mix-blend-mode: normal;
  animation: vg-aurora-move 28s ease-in-out infinite alternate;
}

/* Smooth rhythmic movement */
@keyframes vg-aurora-move {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-2%, -3%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(1.5%, 2.5%, 0) scale(1);
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }
}

/* Typography enhancements */
h1,
h2,
h3,
.section-title,
.logo-text {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: -0.02em;
}

/* Slightly stronger weight for headings for readability */
h1,
.section-title {
  font-weight: 700;
}

h2,
h3 {
  font-weight: 600;
}

.section-intro,
.card p {
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Vibrant Header with Glassmorphism */
.header-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  column-gap: 2.5rem; /* extra breathing room between logo + nav */
}

/* logo-link keeps logo + text on one line and clickable */
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  white-space: nowrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 0 1 auto; /* allow logo block to shrink if needed */
  min-width: 0;
}

/* Restore larger logo size similar to original design */
.logo-image {
  height: 96px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  background: transparent;
  border: none;
  filter: brightness(1.15);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link:hover .logo-image {
  transform: scale(1.05);
  filter: brightness(1.25);
}

.logo-text {
  font-weight: 800;
  font-size: 1.9rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

/* Larger logo text on desktop */
@media (min-width: 1024px) {
  .logo-text {
    font-size: 2.1rem;
  }
}

/* Slightly reduce logo size at mid widths to avoid overlap */
@media (max-width: 1200px) and (min-width: 769px) {
  .logo-text {
    font-size: 1.8rem;
  }
  .logo-image {
    height: 86px;
  }
}

/* main-nav uses remaining width */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 0.9rem; /* tighter gaps so pills fit */
  align-items: center;
  flex-wrap: nowrap;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #475569;
  padding: 0.5rem 0.95rem; /* slightly smaller pills */
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99, 102, 241, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.nav-links a:hover::before {
  left: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.nav-cta {
  background: linear-gradient(135deg, #ec4899, #f472b6) !important;
  color: white !important;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.nav-cta:hover {
  background: linear-gradient(135deg, #db2777, #ec4899) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.6);
}

/* Mobile menu - Enhanced */
.mobile-menu {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #6366f1;
  padding: 0.5rem;
  border-radius: 50%;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
}

.mobile-menu:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: rotate(90deg);
}

/* Stunning Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 0;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 500px;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 400;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Beautiful Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.6);
}

/* UPDATED: clearer secondary button */
.btn-secondary {
  background: #1e3a8a;
  color: #ffffff;
  border: 2px solid #1e40af;
}

.btn-secondary:hover {
  background: #111827;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.6);
}

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* Gorgeous Sections */
.section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.section.alt {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1e40af, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #4b5563;
  text-align: center;
  font-weight: 400;
  line-height: 1.8;
}

/* Stunning Cards & Grids */
.three-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
}

.card:hover {
  transform: translateY(-12px) rotateX(5deg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.card p {
  font-size: 1.02rem;
  color: #4b5563;
  line-height: 1.75;
}

/* Values Cards */
.value {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border: 1px solid rgba(99, 102, 241, 0.2);
  backdrop-filter: blur(10px);
}

.value h3 {
  font-size: 1.25rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Highlight Boxes */
.highlight {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(5, 150, 105, 0.1)
  );
  border-left: 6px solid #10b981;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

/* =======================
   ADVANCED TECH-STYLE FOOTER
   ======================= */

footer {
  background: radial-gradient(
    circle at top left,
    #020617 0%,
    #020617 45%,
    #020617 100%
  );
  color: #cbd5e1;
  padding: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

/* subtle grid / glow */
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 0 0,
      rgba(96, 165, 250, 0.25),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(244, 114, 182, 0.22),
      transparent 60%
    );
  opacity: 0.9;
  pointer-events: none;
}

footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(148, 163, 184, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mix-blend-mode: soft-light;
  opacity: 0.7;
  pointer-events: none;
}

/* main footer layout */
.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: center;
}

/* let pages that use .footer-left keep working */
.footer-left {
  max-width: 520px;
}

/* base note text */
.footer-note {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* footer link cluster */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, #6366f1, #ec4899);
  transition: width 0.25s ease;
}

.footer-links a:hover {
  color: #e5e7eb;
  text-shadow: 0 0 12px rgba(129, 140, 248, 0.7);
}

.footer-links a:hover::after {
  width: 100%;
}

/* optional footer meta row if needed later */
.footer-meta {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

/* make footer content stack nicely on tablets/phones */
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  footer {
    padding: 2.5rem 0 2rem;
  }

  .footer-note {
    font-size: 0.85rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}

/* Footer site search (homepage) */
.site-search-footer {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

/* wide variant classes to make it more prominent */
.site-search-footer-wide {
  max-width: 100%;
}

.site-search-input-footer {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #475569;
  font-size: 0.9rem;
  min-width: 220px;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  transition: all 0.25s ease;
}

/* wide input: stretches nicely on desktop */
.site-search-input-footer-wide {
  flex: 1 1 260px;
  max-width: 420px;
}

.site-search-input-footer::placeholder {
  color: #94a3b8;
}

.site-search-input-footer:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
  border-color: transparent;
}

.site-search-btn-footer {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #f9fafb;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.45);
  transition: all 0.25s ease;
}

/* wide button keeps good size next to wider input */
.site-search-btn-footer-wide {
  padding-inline: 1.4rem;
}

.site-search-btn-footer:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.55);
}

@media (max-width: 640px) {
  .site-search-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-search-input-footer-wide,
  .site-search-btn-footer-wide {
    width: 100%;
  }

  .site-search-btn-footer {
    text-align: center;
  }
}

/* Mobile menu - Enhanced animation */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 320px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    z-index: 1001;
  }

  .nav-links.mobile-open {
    right: 0;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }

  .nav-links a {
    padding: 1.25rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
  }

  .nav-links a:nth-child(1) {
    animation-delay: 0.1s;
  }
  .nav-links a:nth-child(2) {
    animation-delay: 0.2s;
  }
  .nav-links a:nth-child(3) {
    animation-delay: 0.3s;
  }
  .nav-links a:nth-child(4) {
    animation-delay: 0.4s;
  }
  .nav-links a:nth-child(5) {
    animation-delay: 0.5s;
  }
  .nav-links a:nth-child(6) {
    animation-delay: 0.6s;
  }

  .mobile-menu {
    display: block;
    z-index: 1002;
  }

  .hero-inner {
    padding: 4rem 0;
    gap: 2rem;
  }

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

  .logo-image {
    height: 72px;
  }

  .logo-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }
}

/* Scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.value {
  opacity: 0;
  animation-fill-mode: forwards;
}

.card.animate-fade-in,
.value.animate-fade-in {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

/* ========================================
   MOBILE RESPONSIVE FIXES - VERSED GLOBAL
   ======================================== */

/* 1. PERFECT MOBILE LOGO SIZE */
@media (max-width: 768px) {
  .logo-area img {
    height: 72px !important;
    max-height: 72px !important;
  }

  .logo-text {
    font-size: 1.5rem !important;
  }
}

/* 2. RESPONSIVE FONT SIZES */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }

  .section-intro {
    font-size: 1rem !important;
    line-height: 1.6;
  }

  h1,
  h2,
  h3 {
    font-size: 1.4rem !important;
  }

  .card h3 {
    font-size: 1.2rem !important;
  }

  .card p {
    font-size: 0.95rem !important;
  }
}

/* 3. MOBILE HEADER FIX */
@media (max-width: 768px) {
  .header-bar {
    padding: 0.5rem 0 !important;
  }

  .header-inner {
    padding: 0 1rem !important;
    gap: 0.5rem !important;
  }

  .nav-links a {
    font-size: 0.9rem !important;
    padding: 0.5rem 0.75rem !important;
  }
}

/* 4. CONTACT CARDS MOBILE PERFECT */
@media (max-width: 768px) {
  .contact-elegance {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-top: 2rem !important;
  }

  .contact-elegance .card {
    padding: 1.75rem 1.25rem !important;
  }

  .icon-container {
    width: 64px !important;
    height: 64px !important;
    font-size: 1.8rem !important;
  }
}

/* 5. PERFECT MOBILE BUTTONS */
@media (max-width: 768px) {
  .btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
  }

  .btn-primary,
  .btn-secondary {
    width: 100% !important;
    margin: 0.25rem 0 !important;
  }
}

/* 6. GRID CARDS MOBILE */
@media (max-width: 768px) {
  .three-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .card {
    padding: 1.5rem !important;
  }
}

/* 7. PERFECT VIEWPORT & TOUCH */
@media (max-width: 768px) {
  body {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  /* Fix iOS Safari zoom on inputs */
  input,
  textarea,
  select {
    font-size: 16px !important;
  }
}

/* 8. VERY SMALL PHONES */
@media (max-width: 480px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .section-title {
    font-size: 1.6rem !important;
  }
}
