:root {
  --line-color: #ff6b00;
  --hover-color: #ff6b00;
  --text-color: white;
  --background-color: #1c1c1c;
  --base-padding: 15px;
  --border: 1px solid var(--line-color);
  --enterprise-color: #c44dff;
}

body,
html {
  max-width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  background-color: var(--background-color);
  scroll-behavior: smooth;
}

header {
  min-height: 100px;
  padding: 0 40px 0 40px;
  background-color: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.logout-icon {
  width: 40px; /* choose size you want */
  height: 40px; /* keep square for icon */
  position: relative;
  top: 9px;
}

.login-link {
  color: var(--enterprise-color);
}

.logo {
  width: auto;
  height: 100px;
  float: left;
  margin: 0 15px 0 0;
  border-radius: 10%;
  object-fit: cover;
  border: var(--border);
}
.shield-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  vertical-align: text-bottom;
}

.content {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-color);
}

.menu-block {
  display: flex;
}

.top-menu {
  display: flex;
  width: auto;
  height: 100%;
  background-color: transparent;
  padding: 10px;
  border-bottom: 1px solid var(--line-color);
  color: var(--text-color);
  margin-left: 50px;
  font-weight: 500;
  text-wrap: nowrap;
}

.top-menu ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  line-height: 1.4;
  padding: 0;
}

.top-menu ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.menu-item {
  margin: 0;
}

a {
  text-decoration: none;
  font-size: 20px;
  color: var(--text-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

a:hover {
  color: var(--hover-color);
}

.footer-link {
  color: var(--text-color);
  font-size: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.lang-block {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 0 10px 0 20px;
}

footer {
  text-align: center;
  /* background-color: #f5f5f5; */
  border-top: 1px solid var(--line-color);
  margin-top: 40px;
  padding-top: 20px;
  color: var(--text-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.btn.primary {
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(180deg, #ffb300, #ff9800);
  color: #1c1c1c;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border: 1px solid #ff6b00;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
  transition: all 0.25s ease;
}

.btn:hover {
  background: linear-gradient(180deg, #ff9800, #ff6b00);
  color: #000;
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.4);
  transform: translateY(-1px);
}
