main {
  min-height: 80vh;
  color:#fff;
}
body {
  background-color:#282a48;
}
.navbar .container {
  max-width: 100%;
}
h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
h2 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.navbar-brand img {
  max-height: 75px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color:#fff;
}
.nav-link:hover {
  color:#d1caca;
}
.navbar-nav {
  gap: 10px;
}
@media (max-width: 768px) {
  .navbar-nav {
      gap: 0px;
  }
}
footer {
  background-color: #141436 !important;
}
.btn-one {
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  border: none;
  color: #f36509;
  font-weight: bold;
  font-size: 1.1rem;
  border:1px solid #f36509;
}
.btn-two {
  background: linear-gradient(90deg, #f36509 0%, #6817c2 100%);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}
.btn-one:hover {
  background-color: #f36509;
  color: #fff;
}
.btn-two:hover {
  background: linear-gradient(0deg, #f36509 0%, #6817c2 100%);
}

.breadcrumbs {
  font-size: 0.95rem;
  color: #555;
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  background-color: #141436;
  border-radius: 0.375rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.breadcrumbs .separator {
  margin: 0 0.5rem;
  color: #888;
}

.breadcrumbs .current {
  font-weight: 500;
  color: #fff;
}

.table {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #141436;
  color: #ffffff;
  font-size: 16px;
  min-width: 600px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff; 
  background-color: #141436; 
}

th {
  background-color: #1b1b48;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tr:nth-child(even) td {
  background-color: #171749; 
}

tr:hover td {
  background-color: #1f1f5e;
  transition: background-color 0.2s ease-in-out;
}


@media (max-width: 768px) {
  table {
      font-size: 14px;
  }
}
.faq-block {
  border-top: 2px solid #1b204f;
  padding: 20px 0;
}

.faq-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  background-color: #1f1f5e;
  color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}

.faq-question::after {
  content: "➤";
  position: absolute;
  right: 20px;
  font-size: 16px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  color: #333;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 500px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin:auto;
}
.d-flex {
  justify-content: center;
}
.page-btn {
  margin-top: 10px;
  margin-bottom: 10px;
}
nav.bg-light {
  background-color:#141436!important;
}
.dropdown-menu {
  background-color:#45458d;
}
.dropdown-item {
  color:#fff!important;
}
.dropdown-item:focus, .dropdown-item:hover {
  background-color:#5656ad!important;
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5); /* необязательно, но сделает рамку светлее */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
