:root {
  --primary-dark: #184848;
  --primary-light: #a8c030;
  --highlight: #106b87;
  --secondary: #003f69;
  --warning-bg: #ff0;
  --warning-text: #f00;
  --bg-neutral: #f9f9f9;
  --white: #ffffff;
  --text-main: #333;
  --shadow-light: 0 2px 5px rgba(0,0,0,0.1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.6;
}
.warning-bar {
  background-color: var(--warning-bg);
  color: var(--warning-text);
  text-align: center;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
  line-height: 1.2;
}
header {
  background-color: var(--white);
  border-bottom: 1px solid #eee;
  box-shadow: var(--shadow-light);
  position: fixed;
  top: 34px;
  width: 100%;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.logo span {
  color: var(--primary-light);
  margin-left: 5px;
}
.nav-desktop {
  display: flex;
  gap: 20px;
}
.nav-desktop a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
}
.nav-desktop a:hover {
  color: var(--highlight);
}
.nav-desktop a.active {
  color: var(--highlight);
  border-bottom: 2px solid var(--highlight);
}
.menu-mobile-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-dark);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 104px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid #eee;
  padding: 20px;
  gap: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.nav-mobile a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 18px;
}
main {
  margin-top: 120px;
  padding-bottom: 60px;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  margin-bottom: 40px;
}
.bg-alt {
  background-color: var(--bg-neutral);
  padding: 40px 0;
}
h1, h2, h3 {
  color: var(--secondary);
  margin-bottom: 20px;
}
h1 {
  font-size: 36px;
  line-height: 1.2;
}
p {
  margin-bottom: 15px;
  text-align: justify;
}
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.info-block {
  background: var(--white);
  border-left: 5px solid var(--highlight);
  padding: 20px;
  margin: 20px 0;
  box-shadow: var(--shadow-light);
}
.step-box {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.step-num {
  background: var(--highlight);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}
.transparency {
  background-color: #f0f0f0;
  padding: 40px 20px;
  border-radius: 8px;
  margin-top: 60px;
  text-align: center;
}
.transparency h2 {
  color: #d32f2f;
  font-size: 20px;
  margin-bottom: 15px;
}
.transparency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
  margin-top: 20px;
}
.footer {
  background-color: var(--secondary);
  color: var(--white);
  padding: 80px 0 40px;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 1px;
}
.footer-logo span {
  color: var(--primary-light);
}
.footer h4 {
  color: var(--white);
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--highlight);
}
.footer p {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: left;
}
.footer a {
  color: #e0e0e0;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 12px;
  display: block;
  transition: all 0.3s ease;
}
.footer a:hover {
  color: var(--white);
  padding-left: 5px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  color: #e0e0e0;
  font-size: 14px;
}
.footer-contact-item strong {
  color: var(--highlight);
  min-width: 60px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}
.footer-bottom p {
  text-align: center;
  margin-bottom: 10px;
  color: #aaa;
}
@media (max-width: 768px) {
  .warning-bar {
    font-size: 11px;
    padding: 3px 5px;
  }
  header {
    top: 28px;
  }
  .nav-desktop {
    display: none;
  }
  .menu-mobile-btn {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .transparency-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 28px;
  }
}
