@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --container-width: 1200px;
  --accent-start: #043763;
  --accent-end: #0b5fa8;
  --btn-elev: rgba(4,55,99,0.12);
  --btn-shadow-deep: rgba(4,55,99,0.28);
  --sidebar-shadow-color: rgba(4,55,99,0.08);
  --radius: 12px;
  --easing: cubic-bezier(.2,.9,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #1d1d1f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


body.home::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(0,0,0,0.02) 1px, transparent 3px), linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 3px);
  background-size: 100px 100px;
  opacity: 0.8;
  z-index: -1;
}

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }

sidebar-component {
  display: contents;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 86px;
  background: #ffffff;
  border-right: 1px solid var(--sidebar-shadow-color);
  display: flex;
  flex-direction: column;
  padding: 16px 8px;
  z-index: 50;
  transition: width .32s var(--easing);
  overflow: hidden;
}

.sidebar-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.sidebar-top { display: flex; flex-direction: column; align-items: center; }

.logo-rail {
  background: #ffffff;
  border: none;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  padding-right: 70px;
  font-size: 0;
  position: relative;
  overflow: visible;
}

.logo-container { 
  display: flex; 
  width: 70%; 
  height: 70%; 
  position: relative;
}

.logo-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .48s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .32s ease;
  opacity: 1;
  transform: rotateZ(0deg) scale(1);
  position: absolute;
}

.logo-image img { 
  width: 60%; 
  height:60%; 
  object-fit: contain; 
}

.logo-text {
  text-align: center;
  font-family: inherit;
  font-size: 24px;
  font-weight: 400;
  margin-top: 8px;
  color: #043763;
  text-align: center;
  line-height: 0.8;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(0.6);
  left: 50%;
  top: 50%;
  transform-origin: center center;
}

.logo-text span { 
  font-size: 11px; 
  text-align: right;
  opacity: 0.8; 
  display: block; 
  line-height: 1;
}

body.sidebar-expanded .logo-rail { width: 100px; height: 70px; flex-direction: row; justify-content: flex-start; padding: 0 16px; }
body.sidebar-expanded .logo-container { justify-content: flex-start; gap: 12px; }
body.sidebar-expanded .logo-image { opacity: 0; transform: rotateZ(720deg) scale(0.8); pointer-events: none; position: relative; transition: transform .48s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .32s ease; }
body.sidebar-expanded .logo-text { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto; position: absolute; margin-left: 0; transition: opacity .2s ease, transform .2s cubic-bezier(0.34, 1.56, 0.64, 1); }

.sidebar-nav {
  margin-top: 16px;
  flex: 1;
  width: 100%;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-height: calc(100vh - 200px);
}

.sidebar-nav::-webkit-scrollbar { display: none; }

.sidebar-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.sidebar-menu-item { width: 100%;}

.sidebar-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  color: #1d1d1f;
  justify-content: flex-start;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  overflow: visible;
  transition: color .2s ease;
}

.sidebar-menu-button::after { content: ""; position: absolute; inset: 0; border-radius: 10px; box-shadow: inset 0 0 0 0 rgba(0,0,0,0); pointer-events: none; opacity: 0; }
.sidebar-menu-button svg { color: #717182; transition: color .2s ease; }
.sidebar-menu-button:hover { color: #043763; }
.sidebar-menu-button:hover svg { color: #043763; }

.sidebar-menu-button[aria-pressed="true"],
.sidebar-menu-item.active .sidebar-menu-button {
  background: #f0f4f8;
  border: 1px solid rgba(18,25,30,0.12);
  border-left: 4px solid #043763;
  padding-left: 8px;
  justify-content: flex-start;
  box-shadow: 0 2px 8px rgba(3,2,19,0.03);
  color: #043763;
}

.sidebar-menu-button[aria-pressed="true"] svg,
.sidebar-menu-item.active .sidebar-menu-button svg { color: #043763; }

.sidebar-menu-button[aria-pressed="true"]::after,
.sidebar-menu-item.active .sidebar-menu-button::after { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06); opacity: 1; }

.sidebar-menu-item[data-page="local-sled"] .sidebar-menu-button {
  background: rgba(240, 244, 248, 0.5); 
  border: 1px solid rgba(18,25,30,0.12);
  box-shadow: 0 1px 8px rgba(3,2,19,0.03);
  position: relative;
}

.sidebar-menu-item[data-page="local-sled"].active .sidebar-menu-button,
.sidebar-menu-item[data-page="local-sled"] .sidebar-menu-button[aria-pressed="true"] {
  border-left: 4px solid #043763;
  padding-left: 8px;
}

.sidebar-menu-item[data-page="local-sled"] .sidebar-menu-button svg {
  color: #043763;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 0 rgba(4, 55, 99, 0.4)) drop-shadow(0 0 0 rgba(4, 55, 99, 0.4));
  animation: pulsateSvg 3s infinite;
}

.sidebar-menu-item .svg { font-size: 18px; width: 20px; height: 20px; flex-shrink: 0; min-width: 25px; min-height: 25px; }
.sidebar-menu-item .text { position: relative; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 160px; }

.sidebar-footer { display: flex; flex-direction: column; gap: 8px; align-items: center; padding: 8px 0; overflow: hidden; scrollbar-width: none; -ms-overflow-style: none; }

.sidebar-footer::-webkit-scrollbar { display: none; }

.contact-rail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: inherit;
  background-color: #043763;
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 20px;
  border: 0;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(4,55,99,0.14);
  width: 100%;
  justify-content: flex-start;
}

.contact-rail:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(4,55,99,0.18); }
.contact-rail svg { color:#717182; }
.contact-rail:hover svg { color: #043763; }
.contact-rail .icon { width: 18px; height: 18px; flex-shrink: 0; }
.contact-rail .rail-text { display: inline-block; width: auto; transition: opacity .18s ease; }

body.sidebar-expanded .sidebar { width: 260px; }
body.sidebar-expanded .sidebar-menu-button { justify-content: flex-start; padding-left: 20px; }
body.sidebar-expanded main { margin-left: 260px; }

body:not(.sidebar-expanded) .sidebar { width: 86px; }
body:not(.sidebar-expanded) .sidebar-menu-button { justify-content: center; padding-left: 0; }
body:not(.sidebar-expanded) .sidebar-menu-item .text { display: none; }
body:not(.sidebar-expanded) .contact-rail { width: 44px; height: 44px; padding: 10px; justify-content: center; border-radius: 12px; margin-top: 0; }
body:not(.sidebar-expanded) .contact-rail .rail-text { display: none; }

main { transition: opacity .24s ease, margin-left .32s var(--easing); opacity: 1; margin-left: 86px; position: relative; z-index: 1; }

@media (max-width: 1024px) {
  main { margin-left: 0; }
  body.sidebar-expanded main { margin-left: 0; }
  .sidebar { z-index: 100; }
  body.sidebar-expanded .sidebar { box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.3); }
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.page-enter main {
  animation: pageEnter 0.32s var(--easing) forwards;
}

.hero { display: flex; align-items: center; margin: 0; padding: 0; width: 90%;}
.hero-inner { text-align: left; max-width: 800px; margin: 0; padding: 0; }
.grid-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(4,55,99,0.05); color: #043763; font-weight: 600; font-size: 12px; margin-bottom: 32px; border: 1px solid rgba(4,55,99,0.1); }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #043763; }
.hero-title { font-size: 80px; line-height: 1; margin: 6px 0 20px; color: #1d1d1f; font-weight: 400; letter-spacing: -0.5px; }
.hero-title .highlight { color: #043763; }
.hero-subtitle { color: #86868b; max-width: 100%; margin: 0 0 36px; font-size: 30px; line-height: 1.65; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius);
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  transition: all .36s var(--easing);
  min-touch-target-size: 44px;
}

@media (max-width: 768px) {
  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 8px 16px;
    font-size: 12px;
    gap: 6px;
  }
}

.btn-primary {  
  background-color: #043763; 
  color: #ffffff; 
  box-shadow: 0 10px 28px var(--btn-elev);
}

@media (hover: hover) {
  .btn-primary:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 44px var(--btn-shadow-deep); 
    
  }
}

@media (max-width: 480px) {
  .btn-primary:active {
    transform: translateY(-4px);
  }
}

.btn-arrow { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  transition: transform .3s var(--easing); 
  font-size: 18px; 
  color: inherit; 
  line-height: 1; 
  -webkit-font-smoothing: antialiased; 
}

@media (hover: hover) {
  .btn-primary:hover .btn-arrow { 
    transform: translateX(6px); 
  }
}

.btn-large { 
  padding: 18px 40px; 
  font-size: 18px; 
}

@media (max-width: 768px) {
  .btn-large {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .btn-large {
    width: auto;
    padding: 8px 12px;
    font-size: 11px;
  }
}

.offerings, .industries {  background: #ffffff; }
.industries { background: #f5f5f7;}

.section-header { align-items: left; margin-bottom: 48px; }
.section-label { display: block; font-size: 12px; font-weight: 700; color: #043763; letter-spacing: 0.8px; margin-bottom: 16px; }
.section-header h2 { font-size: 48px; font-weight: 650; color: #1d1d1f; margin: 0 0 24px; line-height: 1.2; }
.section-header p { font-size: 18px; color: #86868b; line-height: 1.6; max-width: 100%; margin: 0; }

.offerings-grid, .industries-grid { display: grid; gap: 24px; margin-top: 48px; }
.offerings-grid { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.industries-grid { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }

.offering-card, .industry-card { position: relative; border-radius: 20px; overflow: hidden; cursor: pointer; transition: transform .3s var(--easing); border: 0; background: transparent; padding: 0; font-family: inherit; }
.offering-card:hover, .industry-card:hover { transform: translateY(-8px); }

.offering-image { height: 280px; width: 100%; background-size: cover; background-position: center; transition: transform .5s var(--easing); }
.industry-image { height: 220px; width: 100%; background-size: cover; background-position: center; transition: transform .5s var(--easing); }

.offering-card:hover .offering-image, .industry-card:hover .industry-image { transform: scale(1.1); }

.offering-overlay, .industry-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: white; }
.offering-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.62) 100%);; }
.industry-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.62) 100%); }

.offering-badge { width: 30px; height: 30px; border-radius: 50%; position: relative; bottom: 10px; left:1px; }
.industry-badge { width: 12px; height: 12px; border-radius: 50%; position: absolute; bottom: 65px; left: 30px;}

.offering-overlay h3 { font-size: 20px; font-weight: 600; margin: 0 0 8px; line-height: 1.2; }
.offering-overlay p { color: rgba(255,255,255,0.8); margin: 0; font-size: 13px; line-height: 1.4;}

.industry-overlay h3 { font-size: 18px; font-weight: 600; margin: 0; line-height: 1.2; }
.industry-overlay p { font-size: 12px; color: rgba(255,255,255,0.7); margin: 4px 0 0; line-height: 1.3; }


.final-cta { padding: 140px 0 120px; text-align: center; background: white; }
.cta-content h2 { font-size: 56px; font-weight: 300; color: #1d1d1f; margin: 0 0 24px; line-height: 1.1; }
.cta-content p { font-size: 20px; color: #1d1d1f; line-height: 1.5; margin: 0 0 48px; max-width: 800px; margin-left: auto; margin-right: auto; }

.cta-btn { display: inline-flex; align-items: center; gap: 12px; background-color: #043763; color: white; border: 0; padding: 16px 36px; border-radius: 12px; font-weight: 600; font-size: 15px; cursor: pointer; transition: all .16s ease; box-shadow: 0 10px 30px rgba(4,55,99,0.12); font-family: inherit; }

@media (max-width: 768px) {
  .cta-btn {
    padding: 12px 28px;
    font-size: 13px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .cta-btn {
    padding: 10px 20px;
    font-size: 12px;
    gap: 8px;
  }
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(4,55,99,0.14); background-color: #0b5fa8; }
.cta-arrow { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; transition: transform .3s var(--easing); font-size: 18px; color: inherit; line-height: 1; -webkit-font-smoothing: antialiased; }
.cta-arrow svg { display: block; width: 18px; height: 18px; stroke: currentColor; }
.cta-btn:hover .cta-arrow { transform: translateX(4px); }

.footer { padding: 20px 0; background-color:#f0f4f8; border-top: 1px solid rgba(0,0,0,0.08); text-align: center; color: #86868b; font-size: 14px; margin: 0; }



@media (min-width: 1201px) {
  .hero { padding: 90px 0 40px; margin-left: 70px; }
  .hero-title { font-size: 80px; }
  .hero-subtitle { font-size: 25px; }
  .hero-inner { padding-bottom: 40px; max-width: 100%; }
  .container { padding: 0; }
  .section-header h2 { font-size: 48px; }
  .section-header p { font-size: 18px; }
  .offerings, .industries { padding:  40px 48px; }
  .offerings-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .final-cta { padding: 140px 0 120px; }
  .cta-content h2 { font-size: 56px; }
  .cta-content p { font-size: 20px; }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .hero { padding: 82px 0 40px; margin-left: 50px; }
  .hero-title { font-size: 72px; }
  .hero-subtitle { font-size: 23px; }
  .hero-inner { padding-bottom: 40px; }
  .section-header h2 { font-size: 44px; }
  .section-header p { font-size: 17px; }
  .offerings, .industries { padding: 40px 40px; }
  .offerings-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .final-cta { padding: 120px 0 100px; }
  .cta-content h2 { font-size: 48px; }
  .cta-content p { font-size: 18px; }
}

@media (min-width: 900px) and (max-width: 1024px) {
  .sidebar { position: fixed; left: 20px; top: 20px; bottom: auto; width: 72px; height: 72px; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 18px; padding: 12px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); display: flex; align-items: center; justify-content: center; z-index: 50; overflow: hidden; border-right: none; }
  .sidebar-nav, .sidebar-footer { display: none; }
  body.sidebar-expanded .sidebar { left: 0; top: 0; bottom: 0; width: 50%; height: 100vh; max-width: 500px; background: #ffffff; backdrop-filter: none; border: none; border-radius: 0; border-right: 1px solid var(--sidebar-shadow-color); padding: 16px 8px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }
  body.sidebar-expanded .sidebar-nav, body.sidebar-expanded .sidebar-footer { display: flex; flex-direction: column; }
  .hero { padding: 74px 0 40px; margin-left: 0; margin-right: 0; }
  .hero-title { font-size: 56px; }
  .hero-subtitle { font-size: 21spx; }
  .hero-inner { padding: 0 28px; }
  .section-header h2 { font-size: 36px; }
  .section-header p { font-size: 15px; }
  .offerings, .industries { padding: 40px 28px; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .final-cta { padding: 100px 28px; }
  .cta-content h2 { font-size: 42px; }
  .cta-content p { font-size: 16px; }
}

@media (min-width: 769px) and (max-width: 899px) {
  .sidebar { position: fixed; left: 16px; top: 16px; bottom: auto; width: 68px; height: 68px; background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(14px); border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 18px; padding: 11px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); display: flex; align-items: center; justify-content: center; z-index: 50; overflow: hidden; border-right: none; }
  .sidebar-nav, .sidebar-footer { display: none; }
  body.sidebar-expanded .sidebar { left: 0; top: 0; bottom: 0; width: 55%; height: 100vh; background: #ffffff; backdrop-filter: none; border: none; border-radius: 0; border-right: 1px solid var(--sidebar-shadow-color); padding: 16px 8px; }
  body.sidebar-expanded .sidebar-nav, body.sidebar-expanded .sidebar-footer { display: flex; flex-direction: column; }
  .hero { padding: 64px 0 48px; margin-left: 0; margin-right: 0; }
  .hero-title { font-size: 48px; }
  .hero-subtitle { font-size: 15px; }
  .hero-inner { padding: 0 24px; }
  .section-header h2 { font-size: 32px; }
  .section-header p { font-size: 14px; }
  .offerings, .industries { padding: 56px 24px; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta { padding: 80px 24px; }
  .cta-content h2 { font-size: 38px; }
  .cta-content p { font-size: 15px; }
  .offering-image { height: 240px; }
  .industry-image { height: 180px; }
}

@media (min-width: 601px) and (max-width: 768px) {
  .sidebar {  left: 14px; top: 14px; bottom: auto; width: 60px; height: 60px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 18px; padding: 10px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); display: flex; align-items: center; justify-content: center; z-index: 50; overflow: hidden; border-right: none; }
  .logo-rail { width: 50px; height: 50px; }
  .sidebar-nav, .sidebar-footer { display: none; }
  body.sidebar-expanded .sidebar { left: 0; top: 0; bottom: 0; width: 60%; height: 100vh; background: #ffffff; backdrop-filter: none; border: none; border-radius: 0; border-right: 1px solid var(--sidebar-shadow-color); padding: 16px 8px; }
  body.sidebar-expanded .sidebar-nav, body.sidebar-expanded .sidebar-footer { display: flex; flex-direction: column; }
  .hero { padding: 96px 0 40px; margin-left: 0; margin-right: 0; }
  .hero-title { font-size: 40px; }
  .hero-subtitle { font-size: 14px; }
  .hero-inner { padding: 0 20px; }
  .section-header h2 { font-size: 28px; }
  .section-header p { font-size: 13px; }
  .offerings, .industries { padding: 48px 20px; }
  .offerings-grid, .industries-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 64px 20px; }
  .cta-content h2 { font-size: 32px; }
  .cta-content p { font-size: 14px; }
  .offering-image { height: 240px; }
  .industry-image { height: 200px; }
}

@media (min-width: 421px) and (max-width: 600px) {
  .sidebar { left: 12px; top: 12px; bottom: auto; width: 56px; height: 56px; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.42); border-radius: 16px; padding: 9px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); overflow: hidden; }
  .logo-rail { width: 48px; height: 48px; }
  .sidebar-nav, .sidebar-footer { display: none; }
  body.sidebar-expanded .sidebar { left: 0; top: 0; bottom: 0; width: 70%; height: 100vh; background: #ffffff; backdrop-filter: none; border: none; border-radius: 0; border-right: 1px solid var(--sidebar-shadow-color); padding: 14px 6px; }
  body.sidebar-expanded .sidebar-nav, body.sidebar-expanded .sidebar-footer { display: flex; flex-direction: column; }
  .hero { padding: 96px 0 32px; margin-left: 0; margin-right: 0; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 13px; }
  .hero-inner { padding: 0 16px; }
  .section-header h2 { font-size: 24px; }
  .section-header p { font-size: 12px; }
  .offerings, .industries { padding: 40px 16px; }
  .offerings-grid, .industries-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 56px 16px; }
  .cta-content h2 { font-size: 28px; }
  .cta-content p { font-size: 13px; }
  .offering-image { height: 200px; }
  .industry-image { height: 180px; }
}

@media (max-width: 420px) {
  .sidebar { left: 10px; top: 10px; bottom: auto; width: 52px; height: 52px; background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 14px; padding: 8px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); overflow: hidden; }
  .logo-rail { width: 44px; height: 44px; }
  .logo-image { width: 28px; height: 28px; }
  .sidebar-nav, .sidebar-footer { display: none; }
  body.sidebar-expanded .sidebar { left: 0; top: 0; bottom: 0; width: 80%; height: 100vh; background: #ffffff; backdrop-filter: none; border: none; border-radius: 0; border-right: 1px solid var(--sidebar-shadow-color); padding: 12px 6px; }
  body.sidebar-expanded .sidebar-nav, body.sidebar-expanded .sidebar-footer { display: flex; flex-direction: column; }
  .hero { padding: 120px 0 28px; margin-left: 0; margin-right: 0; min-height: 50vh; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 12px; }
  .hero-inner { padding: 0 14px; }
  .section-header h2 { font-size: 22px; }
  .section-header p { font-size: 11px; }
  .offerings, .industries { padding: 32px 14px; }
  .offerings-grid, .industries-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 48px 14px; }
  .cta-content h2 { font-size: 24px; }
  .cta-content p { font-size: 12px; }
  .offering-image { height: 180px; }
  .industry-image { height: 160px; }
}

@media (max-width: 319px) {
  .sidebar { width: 48px; height: 48px; left: 8px; top: 8px; padding: 6px; border-radius: 12px; overflow: hidden; }
  .logo-rail { width: 40px; height: 40px; }
  .logo-image { width: 24px; height: 24px; }
  body.sidebar-expanded .sidebar { width: 85%; }
  .hero-title { font-size: 24px; }
  .hero-subtitle { font-size: 11px; }
  .section-header h2 { font-size: 20px; }
  .cta-content h2 { font-size: 22px; }
  .offering-image { height: 160px; }
  .industry-image { height: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

@media (max-width: 768px) {
  body:not(.sidebar-expanded) .sidebar { width: 50px; height: 50px; border-radius: 12px; top: 8px; left: 8px; padding: 4px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px rgba(0,0,0,0.12) !important; overflow: hidden; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.4); position: fixed; z-index: 50; }
  body:not(.sidebar-expanded) .sidebar-inner { height: auto; overflow: hidden; }
  body:not(.sidebar-expanded) .logo-rail { width: 100%; height: 100%; background: transparent; border: none; margin-bottom: 0; flex-shrink: 0; align-items: center; justify-content: center; display: flex; padding: 0; }
  body:not(.sidebar-expanded) .logo-container { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
  body:not(.sidebar-expanded) .logo-image { width: 100%; height: 100%; opacity: 1; transform: rotateZ(0deg) scale(1); position: relative; }
  body:not(.sidebar-expanded) .logo-image img { width: 100%; height: 100%; object-fit: contain; }
  body:not(.sidebar-expanded) .sidebar-nav { position: fixed; left: 0; top: 86px; width: 100%; max-height: calc(100vh - 86px); background: white; border-bottom: 1px solid rgba(0, 0, 0, 0.08); z-index: 49; overflow-y: auto; flex-direction: column; padding: 8px 0; display: flex !important; }
  body:not(.sidebar-expanded) .sidebar-footer { display: none !important; height: 0; margin: 0; flex: 0; }
  body.sidebar-expanded .logo-rail { height: 70px; background: white; }
}

@media (max-width: 1024px) {
  body.sidebar-expanded .sidebar {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translateX(0);
  }
  body.sidebar-expanded main {
    margin-left: 0 !important;
  }
}

@media (max-width: 420px) {
  .contact-modal-content {
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
    max-height: 95vh;
  }

  .contact-modal h2 {
    font-size: 18px;
  }

  .contact-info-section h3 {
    font-size: 12px;
  }

  .contact-info-item {
    font-size: 13px;
  }
}

.local-sled {
  background: #ffffff;
}

.local-sled::before {
  opacity: 0 !important;
}

.offering-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.65;
  background: #1d1d1f;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 500;
  margin: 0 0 24px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .offering-hero {
    height: 420px;
  }

  .hero-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .offering-hero {
    height: 360px;
  }

  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .offering-hero {
    height: 300px;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-content {
    padding: 0 16px;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 24px;
    padding: 6px;
  }
}

@media (max-width: 480px) {
  .scroll-indicator {
    bottom: 16px;
    padding: 4px;
  }

  .scroll-indicator svg {
    width: 20px;
    height: 20px;
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

.offering-section {
  padding: 100px 0;
  background: #ffffff;
}

.offering-section.alt {
  background: #f5f5f7;
}

@media (max-width: 1024px) {
  .offering-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .offering-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .offering-section {
    padding: 40px 0;
  }
}

.section-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.offering-section h2 {
  font-size: 48px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 28px;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .offering-section h2 {
    font-size: 40px;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .offering-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .offering-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.section-intro {
  font-size: 18px;
  color: #86868b;
  margin-bottom: 48px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-intro {
    font-size: 16px;
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .section-intro {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.content-grid {
  display: block;
  text-align: center;
}

.content-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.content-block p {
  font-size: 18px;
  color: #86868b;
  line-height: 1.8;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .content-block p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .content-block p {
    font-size: 14px;
    line-height: 1.6;
  }
}

.communities-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.community-item {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.community-item:hover {
  box-shadow: #022749;
  transform: scale(1.02);
  transform-origin: center;
}

.community-header {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  background: white;
  flex-direction: column;
  flex: 1;
  align-items: left;
}

@media (max-width: 768px) {
  .community-header {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .community-header {
    padding: 12px;
  }
}

.community-header-wrapper {
  display: flex;
  align-items: left;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .community-header-wrapper {
    gap: 12px;
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .community-header-wrapper {
    gap: 8px;
    padding: 10px;
  }
}

.community-icon {
  width: 10px;
  background: #043763;
  border-radius: 5px;
  flex-shrink: 0;
  animation: pulsateBorder 2s infinite;
}

.community-header h3 {
  font-size: 32px;
  font-weight: 600;
  color: #043763;
  margin: 0;
  text-align: left;
}

@media (max-width: 1024px) {
  .community-header h3 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .community-header h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .community-header h3 {
    font-size: 16px;
  }
}

.community-region {
  color: #86868b;
  font-size: 18px;
  margin: 0;
  margin-top: 4px;
  text-align: left;
}

@media (max-width: 768px) {
  .community-region {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .community-region {
    font-size: 12px;
  }
}

.community-action {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.action-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.action-text {
  font-size: 14px;
  font-weight: 600;
  color: #a1a1a6;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .action-text {
    display: none;
  }
}

.community-header-wrapper:hover .action-text {
  opacity: 1;
}

.community-item.open .action-text {
  opacity: 1;
}

.community-item .action-wrapper {
  animation: none;
}

.community-item.opening .action-wrapper {
  animation: rotateToClose 0.5s ease-out forwards;
}

.community-item.closing .action-wrapper {
  animation: rotateToExplore 0.2s ease-out forwards;
}

@keyframes rotateToClose {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  100% {
    transform: rotate(180deg) translateX(12px);
  }
}

@keyframes rotateToExplore {
  0% {
    transform: rotate(180deg) translateX(12px);
  }
  100% {
    transform: rotate(0deg) translateX(0);
  }
}

.chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  align-self: left;
}

@media (max-width: 480px) {
  .chevron {
    width: 20px;
    height: 20px;
  }
}

.community-item .chevron {
  transform: rotate(0deg);
}

.community-item.open .chevron {
  transform: rotate(0deg);
}

.community-details {
  padding: 0 24px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  animation: slideDown 0.5s ease forwards;
  display: none;
  overflow: hidden;
}

@media (max-width: 768px) {
  .community-details {
    padding: 0 18px 18px;
  }
}

@media (max-width: 480px) {
  .community-details {
    padding: 0 14px 14px;
  }
}

.community-item.opening .community-details {
  animation: slideDown 0.5s ease forwards;
}

.community-item.closing .community-details {
  animation: slideUp 0.2s ease forwards;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
  100% {
    opacity: 1;
    max-height: 2000px;
    overflow: hidden;
  }
}

@keyframes slideUp {
  0% {
    opacity: 1;
    max-height: 2000px;
    overflow: hidden;
  }
  100% {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
}

@keyframes pulsateBorder {
  0% {
    box-shadow: 0 0 0 0 rgba(4, 55, 99, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(4, 55, 99, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(4, 55, 99, 0.7);
  }
}

@keyframes pulsateSvg {
  0% {
    filter: drop-shadow(0 0 0 rgba(4, 55, 99, 0.6)) drop-shadow(0 0 0 rgba(4, 55, 99, 0.6));
  }
  70% {
    filter: drop-shadow(0 0 20px rgba(4, 55, 99, 0)) drop-shadow(0 0 30px rgba(4, 55, 99, 0));
  }
  100% {
    filter: drop-shadow(0 0 0 rgba(4, 55, 99, 0.6)) drop-shadow(0 0 0 rgba(4, 55, 99, 0.6));
  }
}

.community-details p {
  font-size: 15px;
  color: #86868b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .community-details p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .community-details p {
    font-size: 13px;
    line-height: 1.5;
  }
}

.community-description {
  padding-top: 22px;
  padding-bottom: 22px;
  text-align: left;
}

@media (max-width: 480px) {
  .community-description {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.community-cities {
  margin-bottom: 32px;
}

@media (max-width: 480px) {
  .community-cities {
    margin-bottom: 20px;
  }
}

.community-cities h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 20px;
  text-align: left;
}

@media (max-width: 768px) {
  .community-cities h4 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .community-cities h4 {
    font-size: 14px;
    margin-bottom: 14px;
  }
}

.cities-grid-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .cities-grid-mini {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .cities-grid-mini {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .cities-grid-mini {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.city-name {
  padding: 12px 16px;
  background: #f5f5f7;
  border-radius: 8px;
  font-size: 14px;
  color: #1d1d1f;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .city-name {
    padding: 10px 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .city-name {
    padding: 8px 10px;
    font-size: 12px;
  }
}

.city-name:hover {
  background: #ebebf0;
  border-color: rgba(4, 55, 99, 0.2);
}

.community-link-btn {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #043763 0%, #0b5fa8 100%);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(4, 55, 99, 0.2);
}

@media (max-width: 768px) {
  .community-link-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .community-link-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
  }
}

.community-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 55, 99, 0.3);
}

.community-link-btn .arrow {
  display: inline-flex;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.community-link-btn:hover .arrow {
  transform: translateX(4px);
}

.engagement-text {
  max-width: 900px;
  margin: 48px auto 0;
  display: block;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

@media (max-width: 768px) {
  .engagement-text {
    margin: 36px auto 0;
  }
}

@media (max-width: 480px) {
  .engagement-text {
    margin: 24px auto 0;
  }
}

.engagement-text p {
  font-size: 18px;
  color: #86868b;
  line-height: 1.8;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .engagement-text p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .engagement-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}

.engagement-text strong {
  font-weight: 600;
  color: #1d1d1f;
}

.offering-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(4, 55, 99, 0.08) 0%, rgba(11, 95, 168, 0.08) 100%);
  text-align: center;
}

@media (max-width: 1024px) {
  .offering-cta {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .offering-cta {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .offering-cta {
    padding: 40px 0;
  }
}

.offering-cta h2 {
  font-size: 48px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 24px;
}

@media (max-width: 1024px) {
  .offering-cta h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .offering-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .offering-cta h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.offering-cta p {
  font-size: 18px;
  color: #86868b;
  margin: 0 0 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .offering-cta p {
    font-size: 16px;
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .offering-cta p { 
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.offering-cta .btn-primary {
  background-color: #043763;
  box-shadow: 0 10px 30px rgba(4, 55, 99, 0.2);
}

.offering-cta .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(4, 55, 99, 0.3);
  background-color: #0b5fa8;
}

.back-button {
  position: absolute;
  top: 32px;
  left: 120px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  opacity: 0.5;
  color: #043763;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
  z-index: 40;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1200px) {
  .back-button {
    left: 80px;
  }
}

@media (max-width: 1024px) {
  .back-button {
    top: 24px;
    left: 110px;
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .back-button {
    top: 20px;
    left: 100px;
    padding: 10px 20px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .back-button {
    display: none;
  }
}

.back-button:hover {
  background: #f5f5f7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  opacity: 1;
}

.back-button span {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.back-button:hover span {
  transform: translateX(-4px);
}

@media (max-width: 480px) {
  .back-button:hover span {
    transform: translateX(-2px);
  }
}
  
  .offering-hero {
    height: 420px;
  }

  .hero-content h1 {
    font-size: 48px;
  }


@media (max-width: 1024px) {
  .back-button {
    left: 50px;
  }

  .offering-hero {
    height: 380px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .offering-section {
    padding: 80px 0;
  }

  .offering-section h2 {
    font-size: 40px;
    margin-bottom: 32px;
  }
}

@media (max-width: 768px) {
  .back-button {
    position: absolute;
    right: 20px;
    top: 20px;
    left: auto;
    width: auto;
    opacity: 0.7;
    padding: 8px 10px;
    font-size: 10px;
    gap: 5px;
  }

  .offering-hero {
    height: 360px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .offering-section {
    padding: 60px 0;
  }

  .offering-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .engagement-text {
    gap: 20px;
  }

  .offering-cta {
    padding: 80px 0 60px;
  }

  .offering-cta h2 {
    font-size: 36px;
  }

  .offering-cta p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .back-button {
    width: 100%;
    justify-content: center;
    padding: 8px 12px;
    font-size: 12px;
    gap: 5px;
  }

  .offering-hero {
    height: 320px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .offering-section h2 {
    font-size: 24px;
  }

  .section-intro {
    font-size: 14px;
  }

  .community-header h3 {
    font-size: 16px;
  }

  .content-block p,
  .community-details p {
    font-size: 14px;
  }

  .flow-highlight {
    font-size: 16px;
  }

  .flow-description {
    font-size: 14px;
  }

  .offering-cta h2 {
    font-size: 28px;
  }

  .offering-cta p {
    font-size: 14px;
  }
}


.sgv-local-sled {
  background: #ffffff;
}

.sgv-local-sled::before {
  opacity: 0 !important;
}

.region-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.region-hero .hero-overlay {
  opacity: 0.7;
  background-color: #043763;
}

.region-hero .hero-content {
  z-index: 3;
}

.region-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .region-badge {
    padding: 6px 12px;
    font-size: 11px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .region-badge {
    padding: 6px 12px;
    font-size: 10px;
    margin-bottom: 12px;
  }
}

.badge-bar {
  display: inline-block;
  width: 4px;
  height: 14px;
  background: white;
  border-radius: 2px;
}

.region-hero h1 {
  font-size: 72px;
  font-weight: 300;
  margin: 0 0 24px;
  line-height: 1.1;
  color: white;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .region-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .region-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .region-hero h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }
}

.region-hero p {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 900px;
  line-height: 1.6;
  margin: 0 0 24px;
}

@media (max-width: 1024px) {
  .region-hero p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .region-hero p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .region-hero p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.region-section {
  padding: 80px 0;
  background: #ffffff;
}

@media (max-width: 1024px) {
  .region-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .region-section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .region-section {
    padding: 40px 0;
  }
}

.region-section:nth-child(even) {
  background: #f5f5f7;
}

.region-section h2 {
  font-size: 55px;
  font-weight: 500;
  color: #1d1d1f;
  margin: 0 0 40px;
}

@media (max-width: 1024px) {
  .region-section h2 {
    font-size: 44px;
    margin-bottom: 32px;
  }
}

@media (max-width: 768px) {
  .region-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .region-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .cities-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .cities-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }
}

.city-badge {
  padding: 18px 20px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  text-align: center;
  font-size: 15px;
  color: #1d1d1f;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: default;
}

@media (max-width: 768px) {
  .city-badge {
    padding: 14px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .city-badge {
    padding: 12px 12px;
    font-size: 12px;
  }
}

.city-badge:hover {
  background: #f9f9fb;
  border-color: rgba(4, 55, 99, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .services-list {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .services-list {
    margin-top: 20px;
  }
}

.service-item {
  padding: 0;
}

.service-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 12px;
}

@media (max-width: 768px) {
  .service-item h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .service-item h3 {
    font-size: 14px;
  }
}

.service-item p {
  font-size: 15px;
  color: #86868b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .service-item p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .service-item p {
    font-size: 13px;
  }
}

.region-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(4, 55, 99, 0.08) 0%, rgba(11, 95, 168, 0.08) 100%);
  text-align: center;
}

@media (max-width: 1024px) {
  .region-cta {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .region-cta {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .region-cta {
    padding: 40px 0;
  }
}

.region-cta h2 {
  font-size: 48px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 24px;
}

@media (max-width: 768px) {
  .region-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .region-cta h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

.region-cta p {
  font-size: 18px;
  color: #86868b;
  margin: 0 0 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .region-cta p {
    font-size: 16px;
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .region-cta p {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .location-badge {
    padding: 6px 12px;
    font-size: 12px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .location-badge {
    padding: 6px 12px;
    font-size: 11px;
    margin-bottom: 12px;
  }
}

.location-badge svg {
  width: 16px;
  height: 16px;
  opacity: 0.9;
}

@media (max-width: 480px) {
  .location-badge svg {
    width: 14px;
    height: 14px;
  }
}

.why-section {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

@media (max-width: 768px) {
  .why-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .why-section {
    padding: 40px 0;
  }
}

.why-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .why-content {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .why-content {
    gap: 18px;
  }
}

.why-content p {
  font-size: 18px;
  color: #86868b;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .why-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .why-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

.how-section {
  padding: 80px 0;
  background: #f5f5f7;
  text-align: center;
}

@media (max-width: 768px) {
  .how-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .how-section {
    padding: 40px 0;
  }
}

.how-section .services-accordion {
  text-align: left;
}

.how-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

@media (max-width: 768px) {
  .how-intro {
    margin-bottom: 45px;
  }
}

@media (max-width: 480px) {
  .how-intro {
    margin-bottom: 30px;
  }
}

.how-intro h2 {
  font-size: 44px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 20px;
}

@media (max-width: 768px) {
  .how-intro h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .how-intro h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.how-intro p {
  font-size: 18px;
  color: #86868b;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .how-intro p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .how-intro p {
    font-size: 14px;
  }
}

.services-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .services-accordion {
    gap: 12px;
  }
}

.accordion-item {
  background: white;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s var(--easing);
}

@media (max-width: 768px) {
  .accordion-item {
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .accordion-item {
    border-radius: 8px;
    margin: 0;
  }
}

.accordion-item:hover {
  box-shadow: 0 4px 12px rgba(4, 55, 99, 0.1);
}

@media (max-width: 480px) {
  .accordion-item:active {
    box-shadow: 0 2px 8px rgba(4, 55, 99, 0.08);
  }
}

.accordion-item.open {
  box-shadow: 0 8px 24px rgba(4, 55, 99, 0.15);
}

@media (max-width: 480px) {
  .accordion-item.open {
    box-shadow: 0 4px 16px rgba(4, 55, 99, 0.12);
  }
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  cursor: pointer;
  background: white;
  border: none;
  width: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-align: left;
  transition: 0.3s var(--easing);
  min-height: 100px;
}

@media (max-width: 1024px) {
  .accordion-header {
    padding: 28px 32px;
    min-height: 90px;
  }
}

@media (max-width: 768px) {
  .accordion-header {
    padding: 20px 24px;
    min-height: auto;
    flex-wrap: wrap;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .accordion-header {
    padding: 16px 16px;
    flex-wrap: wrap;
    gap: 12px;
  }
}

.accordion-item.open .accordion-header {
  background: linear-gradient(135deg, rgba(4, 55, 99, 0.05) 0%, rgba(11, 95, 168, 0.05) 100%);
  padding: 24px 28px;
  min-height: auto;
}

@media (max-width: 768px) {
  .accordion-item.open .accordion-header {
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .accordion-item.open .accordion-header {
    padding: 14px 14px;
    gap: 10px;
  }
}

.accordion-header:hover {
  background: rgba(4, 55, 99, 0.03);
  transform: scale(1.02);
  transform-origin: center;
}

@media (max-width: 480px) {
  .accordion-header:active {
    background: rgba(4, 55, 99, 0.05);
  }
}

.accordion-title {
  font-size: 22px;
  font-weight: 300;
  color: #022749;
  flex: 1;
  line-height: 1.5;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .accordion-title {
    font-size: 18px;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .accordion-title {
    font-size: 15px;
    line-height: 1.4;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .accordion-title {
    font-size: 13px;
    line-height: 1.3;
  }
}

.accordion-icon-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

@media (max-width: 768px) {
  .accordion-icon-wrapper {
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .accordion-icon-wrapper {
    gap: 8px;
    flex: 1;
    width: 100%;
    align-items: flex-start;
  }
}

.accordion-icon-bar {
  width: 8px;
  background: #043763;
  border-radius: 5px;
  flex-shrink: 0;
  animation: pulsateBorder 2s infinite;
  min-height: 50px;
}

@media (max-width: 768px) {
  .accordion-icon-bar {
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .accordion-icon-bar {
    min-height: 35px;
  }
}

.accordion-action-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .accordion-action-wrapper {
    gap: 8px;
    align-items: flex-start;
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .accordion-action-wrapper {
    gap: 6px;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
  }
}

.accordion-action-text {
  font-size: 14px;
  font-weight: 600;
  color: #a1a1a6;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .accordion-action-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .accordion-action-text {
    display: none;
  }
}

.accordion-header:hover .accordion-action-text {
  opacity: 1;
}

.accordion-item.open .accordion-action-text {
  opacity: 1;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  transition: transform 0.3s var(--easing);
}

@media (max-width: 480px) {
  .accordion-icon {
    width: 18px;
    height: 18px;
  }
}

.accordion-item .accordion-action-wrapper {
  animation: none;
}

.accordion-item.opening-accordion .accordion-action-wrapper {
  animation: rotateToClose 0.2s ease-out forwards;
}

.accordion-item.closing-accordion .accordion-action-wrapper {
  animation: rotateToExplore 0.5s ease-out forwards;
}

.accordion-item.open .accordion-icon {
  transform: rotate(0deg);
}

.accordion-item.open .accordion-icon svg {
  transform: rotate(0deg);
}

.accordion-icon svg {
  width: 16px;
  height: 16px;
  color: #0b5fa8;
}

@media (max-width: 480px) {
  .accordion-icon svg {
    width: 14px;
    height: 14px;
  }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid #e5e5ea;
  animation: none;
  transition: max-height 0.5s ease;
}

.accordion-content > div {
  padding: 20px 28px;
}

@media (max-width: 768px) {
  .accordion-content > div {
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .accordion-content > div {
    padding: 12px 14px;
  }
}

.accordion-item.opening-accordion .accordion-content {
  animation: slideDown 0.5s ease forwards;
}

.accordion-item.closing-accordion .accordion-content {
  animation: slideUp 0.2s ease forwards;
}

.accordion-item.open .accordion-content {
  max-height: 2000px;
  overflow: visible;
}

@media (max-width: 768px) {
  .accordion-item.open .accordion-content {
    max-height: 2500px;
  }
}

@media (max-width: 480px) {
  .accordion-item.open .accordion-content {
    max-height: 3000px;
  }
}

.accordion-content p {
  padding: 8px 12px;
  font-size: 15px;
  color: #86868b;
  line-height: 1.7;
  margin: 12px 0;
}

.accordion-content p:first-child {
  margin-top: 0;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .accordion-content p {
    font-size: 14px;
    padding: 6px 10px;
    line-height: 1.6;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .accordion-content p {
    font-size: 13px;
    padding: 6px 8px;
    line-height: 1.5;
    margin: 8px 0;
  }
}

.partner-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

@media (max-width: 768px) {
  .partner-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .partner-section {
    padding: 40px 0;
  }
}

.partner-section h2 {
  font-size: 44px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 24px;
}

@media (max-width: 768px) {
  .partner-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .partner-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }
}

.partner-section p {
  font-size: 18px;
  color: #86868b;
  margin: 0 0 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .partner-section p {
    font-size: 16px;
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .partner-section p {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.sgv-footer {
  padding: 30px 0;
  background: #f5f5f7;
  border-top: 1px solid #e5e5ea;
}

.footer-copyright {
  text-align: center;
  font-size: 13px;
  color: #86868b;
  margin: 0 0 14px;
}

.footer-keywords {
  text-align: center;
  font-size: 12px;
  color: #a1a1a6;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .region-hero {
    height: 400px;
  }

  .region-hero h1 {
    font-size: 42px;
  }

  .region-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .accordion-header {
    padding: 18px 24px;
  }

  .accordion-title {
    font-size: 15px;
  }

  .how-intro {
    font-size: 16px;
  }

  .partner-section h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .region-hero {
    height: 360px;
  }

  .region-hero h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .region-hero p {
    font-size: 16px;
  }

  .region-section {
    padding: 50px 0;
  }

  .region-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .cities-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }

  .city-badge {
    padding: 14px 16px;
    font-size: 14px;
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .region-cta {
    padding: 80px 0 60px;
  }

  .region-cta h2 {
    font-size: 36px;
  }

  .accordion-header {
    padding: 16px 20px;
  }

  .accordion-title {
    font-size: 14px;
  }

  .accordion-icon {
    width: 18px;
    height: 18px;
    margin-left: 12px;
  }

  .accordion-content p {
    padding: 16px 20px;
    font-size: 14px;
  }

  .why-content {
    gap: 20px;
  }

  .why-content p {
    font-size: 15px;
  }

  .how-intro {
    margin-bottom: 40px;
  }

  .how-intro h2 {
    font-size: 32px;
  }

  .partner-section h2 {
    font-size: 32px;
  }

  .partner-section p {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .region-hero {
    height: 320px;
  }

  .region-hero h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .region-hero p {
    font-size: 14px;
  }

  .region-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .city-badge {
    padding: 12px 12px;
    font-size: 13px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .service-item h3 {
    font-size: 16px;
  }

  .region-cta h2 {
    font-size: 28px;
  }

  .accordion-header {
    padding: 14px 16px;
  }

  .accordion-title {
    font-size: 13px;
  }

  .accordion-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
  }

  .accordion-content p {
    padding: 14px 16px;
    font-size: 13px;
  }

  .how-intro {
    margin-bottom: 30px;
  }

  .how-intro h2 {
    font-size: 24px;
  }

  .how-intro p {
    font-size: 14px;
  }

  .why-content p {
    font-size: 14px;
  }

  .partner-section {
    padding: 60px 0;
  }

  .partner-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .partner-section p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .sgv-footer {
    padding: 40px 0;
  }

  .footer-copyright {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .footer-keywords {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  button, a, input[type="button"], input[type="submit"], input[type="reset"] {
    min-height: 44px;
    min-width: 44px;
  }

  body {
    font-size: 16px;
  }

  .container {
    padding: 0 16px;
  }

  section {
    margin-bottom: 24px;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  ul, ol {
    margin-left: 24px;
  }

  li {
    margin-bottom: 8px;
  }

  .footer {
    padding: 10px 0;
    font-size: 12px;
  }

  .sgv-footer {
    padding: 20px 0;
  }

  .footer-copyright {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .footer-keywords {
    font-size: 10px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  body {
    font-size: 14px;
    line-height: 1.6;
  }

  .container {
    padding: 0 12px;
  }

  * {
    -webkit-tap-highlight-color: rgba(4, 55, 99, 0.1);
  }

  a, button {
    touch-action: manipulation;
  }

  input, textarea, select {
    font-size: 16px;
    min-height: 44px;
    padding: 12px;
  }

  input[type="text"],
  input[type="email"],
  input[type="phone"],
  textarea {
    font-size: 16px;
  }

  .modal, dialog {
    width: 100vw;
    max-width: 100%;
  }

  table {
    font-size: 13px;
  }

  h1 {
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
  }

  h2, h3, h4, h5, h6 {
    word-break: break-word;
  }

  .footer {
    padding: 8px 0;
    font-size: 10px;
  }

  .sgv-footer {
    padding: 16px 0;
  }

  .footer-copyright {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .footer-keywords {
    font-size: 9px;
    line-height: 1.3;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .sidebar {
    width: 60px;
  }

  main {
    margin-left: 60px;
  }

  .offering-hero, .region-hero {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 13px;
  }
}


@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .sidebar, footer, .back-button, .scroll-indicator {
    display: none;
  }

  body {
    margin: 0;
    padding: 0;
  }

  main {
    margin-left: 0;
  }
}
