:root {
    --bs-body-bg: #241414;
    --bs-body-color: #f8f8f8;
}

.mobile-nav {
    text-transform: uppercase;
}

.right-controls{
    min-width: 50px;
}

.language-selector {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.language-selector .current-lang {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
}

.language-selector .current-lang img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
}

.language-selector .language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    min-width: 200px;
    max-height: 450px;
    overflow-y: auto;
    text-transform: uppercase;
    font-size: 12px;
}

header{
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}

.language-selector:hover .language-dropdown {
    display: block;
}

.language-selector .language-option {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.language-selector .language-option:hover {
    background-color: #f8f9fa;
}

.language-selector .language-option img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
}

.logo {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo img {
    max-height: 60px;
}

.logo a:hover {
    text-decoration: none;
    box-shadow: none;
    background: none;
    border: 0 !important;
}

.logo a {
    text-decoration: none;
    box-shadow: none;
    background: none;
    border: 0 !important;
}

.navigation {
    justify-content: right !important;
}


.site-header-inner {
    width: 100%;
}

.main-nav {
    display: flex;
    justify-content: flex-end !important;
    width: 100%;
    text-transform: uppercase;
}

.main-nav a {
    padding: 8px 3px !important;
}

@media (max-width: 820px) {
    .header-inner {
        justify-content: space-between !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .main-nav {
        display: none;
    }
}

.header-inner {
    width: 100% !important;
    justify-content: space-between !important;
    padding: 5px !important;
    min-height: unset !important;
}

.panel-lang {
    margin-top: unset;
}

/* >>> STEP5_HEADER_CSS_START >>> */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  position: relative;
  z-index: 1000;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.main-nav ul li {
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.main-nav ul li a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.main-nav ul li a[aria-current="page"] {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.right-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.burger-btn:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.burger-btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.burger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 90vw;
  height: 100%;
  background-color: var(--bs-body-bg, #fff);
  color: var(--bs-body-color, #212529);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-close-btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--bs-body-color, #212529);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.mobile-close-btn:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.mobile-close-btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.mobile-panel nav {
  padding: 1rem 0;
}

.mobile-panel nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-panel nav ul li {
  margin: 0;
  padding: 0;
}

.mobile-panel nav ul li a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--bs-body-color, #212529);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background-color 0.2s ease;
}

.mobile-panel nav ul li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.mobile-panel nav ul li a[aria-current="page"] {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 820px) {
  .main-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }
}
/* <<< STEP5_HEADER_CSS_END <<< */

/* ---STYLE--- */
/* ===== AI Generated Business Styles ===== */
:root{--bs-body-bg:#0b2540;--bs-body-color:#f5f7fa}

/* Header */
header{background:var(--bs-body-bg);color:var(--bs-body-color);font-family:'Inter','Segoe UI',Roboto,sans-serif;padding:0.75rem 1rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;border-bottom:1px solid rgba(255,255,255,0.04);box-shadow:0 4px 18px rgba(3,10,25,0.25);border-radius:0 0 12px 12px}
header .nav{display:flex;align-items:center;gap:0.5rem}
header a{color:var(--bs-body-color);text-decoration:none;font-weight:600;padding:0.45rem 0.6rem;border-radius:8px;transition:background-color 180ms ease,color 180ms ease,transform 180ms ease}
header a:hover{background:rgba(255,255,255,0.04);transform:translateY(-1px)}
header a:focus{outline:3px solid rgba(255,255,255,0.08);outline-offset:2px;border-radius:8px}

/* Main */
main{background:#ffffff;color:#0f1724;font-family:'Inter','Segoe UI',Roboto,sans-serif;padding:1rem;border-radius:12px;box-shadow:0 8px 30px rgba(11,37,64,0.06);transition:box-shadow 220ms ease,transform 220ms ease;max-width:1200px;margin:1rem auto}
main:focus-within{box-shadow:0 12px 40px rgba(11,37,64,0.08)}

/* Typography */
main h1{font-size:1.5rem;line-height:1.15;margin:0 0 0.6rem;font-weight:700;color:#071b2c}
main h2{font-size:1.125rem;line-height:1.25;margin:1.1rem 0 0.5rem;font-weight:650;color:#102733}
main h3{font-size:1rem;line-height:1.3;margin:0.8rem 0 0.4rem;font-weight:600;color:#163244}
main p{font-size:0.95rem;line-height:1.7;margin:0 0 0.8rem;color:#283845}

/* Links inside main */
main a{color:#7a2a3b;font-weight:600;text-decoration:none;transition:color 160ms ease,opacity 160ms ease;border-radius:6px}
main a:hover{color:#8f333b;text-decoration:underline}
main a:focus{outline:3px solid rgba(122,42,59,0.12);outline-offset:3px;border-radius:6px}

/* Lists */
main ul{margin:0 0 1rem 1.25rem;padding:0;color:#283845}
main li{margin:0.35rem 0;padding:0.05rem 0}

/* Tables */
main table{width:100%;border-collapse:collapse;margin:1rem 0;background:#ffffff;border-radius:8px;overflow:hidden;display:block;max-width:100%;-webkit-overflow-scrolling:touch}
main table thead th{background:#f4f7fb;color:#0b2540;font-weight:700;padding:0.65rem 0.85rem;text-align:left;font-size:0.9rem;border-bottom:1px solid rgba(11,37,64,0.06)}
main table tbody td{padding:0.65rem 0.85rem;border-bottom:1px solid rgba(11,37,64,0.04);font-size:0.95rem;color:#22343f}
main table tbody tr:nth-child(even){background:rgba(11,37,64,0.02)}
main table caption{caption-side:bottom;padding-top:0.5rem;font-size:0.85rem;color:#6b7b85}

/* Figures */
main figure{margin:0 0 1rem;padding:0;border-radius:8px;overflow:hidden}
main figcaption{font-size:0.85rem;color:#6b7b85;padding:0.5rem 0;margin-top:0.4rem}

/* Inline utilities inside main */
main .muted{color:#6b7b85}
main .callout{display:block;background:#fbfbfe;border:1px solid rgba(11,37,64,0.04);padding:0.8rem 1rem;border-radius:9px;margin:0.6rem 0;color:#122233}

/* Accessible focus states for interactive elements within main */
main a:focus-visible, main button:focus-visible, main input:focus-visible, main select:focus-visible{outline:3px solid rgba(10,45,72,0.12);outline-offset:3px;border-radius:6px}

/* Footer */
footer{background:var(--bs-body-bg);color:var(--bs-body-color);font-family:'Inter','Segoe UI',Roboto,sans-serif;padding:1rem;border-top:1px solid rgba(255,255,255,0.04);display:flex;flex-direction:column;gap:0.5rem;align-items:center;justify-content:center;border-radius:12px 12px 0 0}
footer p{margin:0;font-size:0.9rem;opacity:0.95}
footer a{color:var(--bs-body-color);text-decoration:none;font-weight:600;padding:0.4rem;border-radius:6px;transition:background-color 160ms ease}
footer a:hover{background:rgba(255,255,255,0.04)}
footer small{color:rgba(245,247,250,0.75);font-size:0.82rem}

/* Responsive adjustments */
@media(min-width:640px){
  header{padding:0.85rem 1.25rem}
  main{padding:1.25rem;border-radius:14px}
  main h1{font-size:1.75rem}
  main h2{font-size:1.25rem}
  main h3{font-size:1.05rem}
  footer{padding:1rem 1.25rem;flex-direction:row;justify-content:space-between}
}

@media(min-width:1024px){
  header{padding:1rem 1.5rem}
  header .nav{gap:0.75rem}
  main{padding:1.5rem;border-radius:16px}
  main h1{font-size:2rem}
  main h2{font-size:1.375rem}
  main h3{font-size:1.125rem}
  main{margin:1.5rem auto}
  footer{padding:1rem 1.5rem}
}
/* ---END STYLE--- */
