body {
    padding-top: 90px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bg-home {
    
    background: linear-gradient(90deg, #0f172a 0%, #1e3a8a 100%);


    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

.team-name {
    color: #007bff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.team-tagline {
    color: white;
    font-size: 22px;
    font-weight: 400;
}

a.navnorth-container {
  text-decoration: none;
  color: inherit;
}

.about-container {
    border-radius: 8px;
    padding: 10px 20px;
    margin-bottom: 40px;
    max-width: 600px;
    width: 100%;
}

.welcome-container {
  display: flex;
  flex-direction: column; 
  align-items: center;    
  justify-content: space-between;
  gap: 24px;           
  padding: 40px 20px;
  width: 100%;       /* занять всю ширину родителя */
  height: 100%;      /* занять всю высоту родителя */
  box-sizing: border-box; /* чтобы padding учитывался внутри размеров */

  position: relative;
  overflow: visible;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px; /* фиксированная высота, равная высоте изображения и паддингов */
    padding: 10px 20px;
    background-color: #0e0b10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 1050;
    display: flex;
    align-items: center;
}

.nav-container img {
    height: 60px;
    width: auto;
}

.nav-container .nav-link {
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 12px;
    padding: 8px 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.nav-container .nav-link:hover {
    background-color: #1c68da;
    color: #ffffff;
    text-decoration: none;
}

.nav-container .login-btn {
    border: none;
    padding: 8px 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-left: 20px;
}

.nav-container .login-btn:hover {
    background-color: #d32f2f;
    box-shadow: 0 6px 12px rgba(211, 47, 47, 0.6);
    color: #fff;
}

.nav-link, h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* Появляется под ссылкой */
  left: 0;
  background-color: #0e0b10;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  min-width: 150px;
  z-index: 999;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background-color: #1c68da;
  color:#fff
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1030; /* чтобы быть поверх остальных элементов */
}

.bg-dark {
  background-color: #0e0b10 !important;
}

.section-wrapper {

  height: 90%;
  width: 100%;

  overflow: hidden; /* добавлено */
}