body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #f1f1f1, #e2e2e2);
}

/* Основной контейнер */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.8);
  padding: 20px;
}

/* Блок с формой */
.auth-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Заголовок */
.auth-box h2 {
  margin-bottom: 20px;
  color: #333;
}

/* Поля ввода */
.login-input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}

.login-input:focus {
  border-color: #2b8a62;
  outline: none;
}

/* Сетка фото */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  justify-items: center;
  margin: 10px 0;
}

/* Фото-превью */
.photo-preview {
  width: 100px;
  height: 100px;
  border: 2px dashed #aaa;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: border-color 0.3s;
  position: relative;
}

.photo-preview::after {
  content: "Фото";
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #999;
  font-size: 12px;
  text-align: center;
}

.photo-preview.has-photo::after {
  content: "";
}

.photo-preview:hover {
  border-color: #2b8a62;
}

/* Кнопка Добавить ещё */
#addMorePhoto {
  display: none;
  padding: 6px;
  border: 2px dashed #aaa;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  text-align: center;
  width: 100px;
  transition: background 0.2s, border-color 0.2s;
}

#addMorePhoto:hover {
  background: #f7f7f7;
  border-color: #2b8a62;
}

/* Кнопки */
.login-button {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: #2b8a62;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}

.login-button:hover {
  background: #1f5d43;
}

/* Кнопка Назад */
.back-btn {
  background: #888;
}

.back-btn:hover {
  background: #555;
}

/* Лейбл */
.cv-label {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #333;
  text-align: left;
}
input[type="file"].login-input {
  padding: 10px;
  border: 1px solid #ccc;
  background: #fafafa;
  cursor: pointer;
}

textarea.limit-reached {
  border-color: #c00;
  background: #ffeaea;
}
/* --- Бургер-кнопка --- */
.user-info, .mobile-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-avatar {
  width:32px;
  height:32px;
  border-radius:50%;
  object-fit: cover;
}
.burger-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1002;
    cursor: pointer;
}

.burger-icon span {
    height: 3px;
    width: 100%;
    background: #ffffff; /* БЕЛЫЙ цвет */
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-logo {
    text-align: center;
    margin-bottom: 30px;
}

.mobile-logo img {
    max-width: 240px;
    height: auto;
    display: inline-block;
    transition: transform 0.3s ease;
}

.mobile-logo img:hover {
    transform: scale(1.05);
}

/* Меню открыто — превращаем в крест */
.burger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}

.burger-icon.active span:nth-child(2) {
    opacity: 0;
}

.burger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #151536;
    padding: 80px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.5);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

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

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: slideIn 0.4s ease;
}

.mobile-nav li {
    margin: 20px 0;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.2s ease, color 0.3s ease;
    display: inline-block;
}

.mobile-nav a:hover {
    color: #00aaff;
    transform: scale(1.08); /* мягкое увеличение */
}

.social-icons {
    margin-top: 30px;
    text-align: center;
}

.social-icons a {
    color: #ffffff; /* Белый цвет иконок */
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
    color: #00aaff; /* Акцентный при наведении */
    transform: scale(1.2);
}

.mobile-contact {
    margin-top: 25px;
    font-size: 14px;
    color: #cccccc;
    text-align: center;
}

.mobile-contact h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.mobile-contact i {
    margin-right: 8px;
    color: #00aaff;
}

/* --- Затемнение фона --- */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 1000;
    pointer-events: none;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* --- Анимация меню --- */
@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== Десктоп-меню ===== */
.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
        position: sticky;
        top: 0;
        z-index: 999;
        background-color: #ffffff;
        border-bottom: 1px solid #ffffff;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

    .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 36px; /* уменьшенный логотип */
            width: auto;
        }

    .desktop-nav ul {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin: 0;
        padding: 12px 0;
        list-style: none;
    }

    .desktop-nav a {
        position: relative;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        color: var(--text-color);
        font-family: 'Segoe UI', 'Roboto', sans-serif;
        transition: color 0.3s ease;
    }

    .desktop-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        height: 2px;
        width: 0;
        background-color: var(--accent-color);
        transition: width 0.3s ease;
    }

    .desktop-nav a:hover {
        color: var(--accent-color);
    }

    .desktop-nav a:hover::after {
        width: 100%;
    }

    .burger-icon {
        display: none !important;
    }

    .mobile-nav {
        display: none !important;
    }
}


/* --- Мобильное включение --- */
@media (max-width: 768px) {
    .burger-icon {
        display: flex;
    }
}
@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-20px);
        opacity: 0;
    }
}

.mobile-nav.closing {
    animation: slideOut 0.3s ease forwards;
}

/* начало */
.main-header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.main-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}

.main-header.visible::before {
    opacity: 1;
}

.header-overlay {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 900px;
}

.main-header h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.main-description {
    font-size: 20px;
    color: #ccc;
    line-height: 1.5;
}
.service-list a.service-item {
    text-decoration: none;
    color: inherit;
}
/*услуги */
.services {
    background-color: #1b1b38;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #00aaff;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background-color: #222244;
    padding: 20px;
    border-radius: 10px;
    font-size: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    background-color: #2c2c5c;
}
.back-arrow {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #00aaff;
  font-size: 16px;
  font-weight: bold;
  background-color: rgba(255,255,255,0.07);
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.back-arrow i {
  margin-right: 8px;
}

.back-arrow:hover {
  background-color: rgba(255,255,255,0.15);
  transform: translateX(-3px);
}
/* Элементы с задержкой */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

#plane {
  position: absolute;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
}

#trail {
  position: absolute;
  width: 2px;
  background-color: #00aaff;
  z-index: 5;
}

.footprint-trail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

@keyframes fadeInFootprint {
  from {
    opacity: 0;
    transform: scale(0.9) rotate(180deg);
  }
  to {
    opacity: 0.4;
    transform: scale(1) rotate(180deg);
  }
}
/* Почему именно мы */
.why-choose-us {
    background-image: url('img/back5.jpg'); /* можно заменить на своё изображение */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 40, 0.85); /* затемнение */
    z-index: -1;
}

.why-choose-us h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #00aaff;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.why-text {
    flex: 1 1 300px;
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
}

.why-images {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.why-images img:hover {
    transform: scale(1.02);
}
/* коментарии */
.testimonials {
    background-color: #111;
    color: #eee;
    padding: 60px 20px;
    text-align: center;
}

.testimonials h2 {
    color: #00aaff;
    font-size: 28px;
    margin-bottom: 30px;
}

.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #1e1e1e;
    border-left: 4px solid #00aaff;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    font-size: 15px;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card strong {
    display: block;
    margin-top: 15px;
    color: #aaa;
    font-size: 14px;
}

.testimonial-card .testimonial-content {
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    position: relative;
}

.testimonial-card.expanded .testimonial-content {
    max-height: 1000px;
}

.toggle-button {
    background: none;
    border: none;
    color: #00aaff;
    margin-top: 10px;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    transition: color 0.3s;
}

.toggle-button:hover {
    color: #fff;
}
/*        info          */
.info-button {
  display: inline-block;
  text-decoration: none;
  background-color: transparent;
  color: #00aaff;
  border: 2px solid #00aaff;
  padding: 10px 22px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  margin-left: 10px;
}

.info-button:hover {
  background-color: #00aaff;
  color: #fff;
  text-decoration: none;
}



.recruitment-card {
  text-align: center;
}

.recruitment-card h2,
.recruitment-card h3 {
  text-align: center;
  margin-bottom: 15px;
}

.recruitment-card p,
.recruitment-card ul {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  color: #ccc;
}

.recruitment-benefits ul {
  display: inline-block;
  text-align: left;
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

.recruitment-benefits ul li {
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
}

.recruitment-benefits ul li i {
  color: #00aaff;
  min-width: 20px;
}

.timeline {
  text-align: center;
  margin: 40px auto;
  max-width: 600px;
}

.timeline h3 {
  color: #00ffaa;
  margin-bottom: 20px;
  font-size: 18px;
}

.timeline-step {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 16px;
  text-align: left;
}

.timeline-step span {
  position: absolute;
  left: 0;
  top: 0;
  background: #00aaff;
  color: white;
  font-weight: bold;
  width: 24px;
  height: 24px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  line-height: 24px;
}

.candidate-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.candidate-gallery div {
  text-align: center;
  width: 150px;
}

.candidate-gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.candidate-gallery p {
  margin-top: 10px;
  color: #ccc;
  font-size: 14px;
}

.full-width-image {
  width: 100%;
  border-radius: 12px;
  margin: 25px 0;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

.testimonial {
  background-color: rgba(255,255,255,0.05);
  border-left: 4px solid #00aaff;
  padding: 15px 20px;
  margin: 20px auto;
  font-style: italic;
  color: #ccc;
  border-radius: 8px;
  max-width: 700px;
}

.testimonial strong {
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: #00ffaa;
}

.back-arrow {
  display: inline-block;
  margin-bottom: 30px;
  color: #00aaff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.back-arrow:hover {
  color: #00ffaa;
  text-decoration: none;
}
/* Подбор персонала */
.recruitment-section {
  position: relative;
  background: linear-gradient(145deg, #0e0e1f, #1f2940);
  color: #fff;
  padding: 80px 20px;
  overflow: hidden;
}

.recruitment-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  z-index: 2;
}

.recruitment-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  flex: 1 1 400px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.recruitment-card:hover {
  transform: translateY(-5px);
}

.recruitment-card h2 {
  font-size: 26px;
  color: #00aaff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.recruitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}

.recruitment-list li {
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.recruitment-list i {
  color: #00aaff;
  min-width: 20px;
}

.recruitment-image {
  flex: 1 1 400px;
  position: relative;
}

.recruitment-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.recruitment-image img:hover {
  transform: scale(1.03);
}

.recruitment-subtext {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ccc;
}

.recruitment-benefits {
  margin-top: 30px;
}

.recruitment-benefits h3 {
  font-size: 18px;
  color: #00ffaa;
  margin-bottom: 10px;
}

.recruitment-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recruitment-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.cta-button {
  display: inline-block; /* Делает <a> похожим на кнопку */
  text-decoration: none; /* Убирает подчёркивание */
  background-color: #00aaff;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 30px; /* Восстанавливаем отступ сверху */
}

.cta-button:hover {
  background-color: #008ecc;
  text-decoration: none;
}

.recruitment-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 15px;
  color: #fff;
  backdrop-filter: blur(5px);
}

.recruitment-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.recruitment-stats span {
  font-size: 20px;
  font-weight: bold;
  color: #00ffaa;
}
/* Подбор вакансия */
/*Помощь в оформлении документов<*/
.documents-section {
  background: linear-gradient(135deg, #1a2238, #0f0f1a);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  text-align: center;
}

.documents-container {
  max-width: 850px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  position: relative;
}

.documents-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.documents-icon {
  font-size: 70px;
  color: #00aaff;
  background: rgba(0, 170, 255, 0.1);
  padding: 25px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.4);
}

.documents-content h2 {
  font-size: 30px;
  color: #00aaff;
  margin-bottom: 15px;
}

.documents-subtext {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.documents-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.documents-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
}

.documents-list i {
  color: #00aaff;
  min-width: 24px;
  font-size: 18px;
}

.cta-button {
  display: inline-block;
  text-decoration: none;
  background-color: #00aaff;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.cta-button:hover {
  background-color: #008ecc;
}
/* Международный рекрутинг */
.intl-recruit-section {
  position: relative;
  background: linear-gradient(145deg, #0e0e1f, #1f2940);
  color: #fff;
  padding: 80px 20px;
  overflow: hidden;
}

.intl-recruit-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 50px;
  gap: 40px;
}

.intl-recruit-card {
  flex: 1 1 450px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.intl-recruit-card h2 {
  font-size: 28px;
  color: #00aaff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.intl-intro {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.intl-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intl-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.intl-list i {
  color: #00aaff;
  min-width: 20px;
  font-size: 18px;
}

.intl-recruit-image {
  flex: 1 1 400px;
}

.intl-recruit-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* КАРТА */
.map-overlay {
  background-color: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  max-width: 1000px;
  margin: 0 auto;
}

.map-overlay h3 {
  font-size: 24px;
  color: #00aaff;
  margin-bottom: 25px;
}

.map-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.world-map {
  width: 100%;
  border-radius: 10px;
  opacity: 0.85;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.map-arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.arrow {
  position: absolute;
  font-size: 14px;
  color: #fff;
  background: #00aaff;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: bold;
  opacity: 0.9;
  animation: pulse 3s infinite;
}

.asia-to-eu {
  top: 38%;
  left: 32%;
}
.africa-to-eu {
  top: 60%;
  left: 27%;
}
.cis-to-eu {
  top: 35%;
  left: 45%;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}
.map-svg {
  width: 100%;
  height: auto;
  max-width: 900px; /* или больше, если нужно */
  display: block;
  margin: 0 auto;
}
/* Словакия */
#SK {
  fill: #86c5ff; /* Базовый цвет Словакии */
  stroke: #3b78c2;
}

#SK:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#CZ {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#CZ:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#PL {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#PL:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#DE {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#DE:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#BQBO {
   fill: #86c5ff;
    stroke: #3b78c2;
}

#BQBO:hover {
  fill: #1f85ff; /* Цвет при наведении */
   stroke: #004b99;
}

/* Синт-Эстатиус (BQSE) */
#BQSE {
   fill: #86c5ff;
    stroke: #3b78c2;
}

#BQSE:hover {
  fill: #1f85ff; /* Цвет при наведении */
   stroke: #004b99;
}

/* Саба (BQSA) */
#BQSA {
  fill: #86c5ff;
   stroke: #3b78c2;
}

#BQSA:hover {
  fill: #1f85ff;
   stroke: #004b99;
}

#BE {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#BE:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#LV {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#LV:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#LT {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#LT:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#EE {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#EE:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#RO {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#RO:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#BG {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#BG:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#AT {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#AT:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#FI {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#FI:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#SE {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#SE:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}


.Norway {
  fill: #86c5ff;
  stroke: #3b78c2;
  transition: fill 0.3s ease, stroke 0.3s ease;
  cursor: pointer;
}

/* Подсветка при наведении */
.Norway:hover {
  fill: #1f85ff;
    stroke: #004b99;
}

/*  Дании */
.Denmark {
  fill: #86c5ff;
  stroke: #3b78c2;
  transition: fill 0.3s ease, stroke 0.3s ease;
  cursor: pointer;
}

/* Подсветка при наведении */
.Denmark:hover {
   fill: #1f85ff;
      stroke: #004b99;
}

#UA {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#UA:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#MD {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#MD:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#GE {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#GE:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#AM {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#AM:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#KZ {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#KZ:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#KG {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#KG:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#UZ {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#UZ:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

.Turkey {
 fill: #86c5ff;
  stroke: #3b78c2;
  stroke-width: 0.5;      /* Чуть более заметный контур */
  transition: all 0.3s ease;
  cursor: pointer;
}

.Turkey:hover {
 fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
  stroke-width: 1;        /* Толще при наведении */
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5)); /* Лёгкая тень */
}

#IN {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#IN:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}
#BD {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#BD:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

.Philippines {
  fill: #86c5ff;
  stroke: #3b78c2;
  stroke-width: 0.4;
}

.Philippines:hover {
  fill: #1f85ff;
  stroke: #004b99;
  stroke-width: 1;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5)); /* Лёгкая тень */

}

#NP {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#NP:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#VN {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#VN:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#NG {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#NG:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#GH {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#GH:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#KE {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#KE:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#CM {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#CM:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#EG {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#EG:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#MA {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#MA:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}
#TN {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#TN:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#LK {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#LK:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#PK {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#PK:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

.UnitedKingdom {
  fill: #86c5ff;
  stroke: #3b78c2;
  stroke-width: 0.4;
}

.UnitedKingdom:hover {
   fill: #1f85ff; /* Цвет при наведении */
   stroke: #004b99;
  stroke-width: 1;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.5)); /* Тень */
}

#IE {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#IE:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

path.Greece {
  fill: #86c5ff;
  stroke: #3b78c2;
  stroke-width: 0.5;
}

path.Greece:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#PT {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#PT:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#HR {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#HR:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#RS {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#RS:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#BA {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#BA:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#CO {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#CO:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#ES {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#ES:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#KR {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#KR:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#SA {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#SA:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#QA {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#QA:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#AE {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#AE:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}

#ZA {
  fill: #86c5ff;
  stroke: #3b78c2;
}

#ZA:hover {
  fill: #1f85ff; /* Цвет при наведении */
  stroke: #004b99;
}
/* Сезонная работа */
.seasonal-section-alt {
  background: linear-gradient(145deg, #10101e, #1a1a2c);
  color: #eee;
  padding: 80px 20px;
  text-align: center;
}

.seasonal-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.seasonal-intro h2 {
  font-size: 30px;
  color: #00aaff;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.seasonal-intro p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ccc;
  line-height: 1.6;
}

.seasonal-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.season-card {
  background-color: #1e1e2e;
  padding: 24px;
  border-radius: 14px;
  width: 250px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.season-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.3);
}

.season-card i {
  font-size: 34px;
  color: #00aaff;
  margin-bottom: 12px;
}

.season-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}

.season-card p {
  font-size: 15px;
  color: #ccc;
}

.apply-button .cta-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #00aaff;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.2s;
}

.apply-button .cta-button:hover {
  background-color: #0088cc;
  transform: scale(1.05);
}
/* Надёжная работа */
.for-workers {
  background: linear-gradient(145deg, #121220, #1b1b2e);
  color: #eee;
  padding: 80px 20px;
  text-align: center;
}

.for-workers-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.for-workers h2 {
  font-size: 30px;
  color: #00aaff;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.for-workers-subtitle {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ccc;
  line-height: 1.6;
}

.worker-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.benefit {
  background-color: #1e1e2e;
  padding: 24px;
  border-radius: 14px;
  width: 260px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.3);
}

.benefit i {
  font-size: 34px;
  color: #00aaff;
  margin-bottom: 12px;
}

.benefit strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}

.benefit p {
  font-size: 15px;
  color: #ccc;
}

.apply-button .cta-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #00aaff;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.2s;
}

.apply-button .cta-button:hover {
  background-color: #0088cc;
  transform: scale(1.05);
}

/* ==== Сотрудничество (основа) ==== */
.partnership {
  background: linear-gradient(to right, #151528, #1f1f3f);
  color: #f0f0f0;
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Заголовок */
.partnership h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #00bfff;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Подзаголовок */
.partnership h3 {
  font-size: 24px;
  color: #00bfff;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Слоган */
.slogan {
  margin-top: 40px;
  font-style: italic;
  color: #999;
  font-size: 16px;
  opacity: 0.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Описание */
.partnership-description {
  max-width: 750px;
  margin: 0 auto 35px;
  font-size: 17px;
  color: #cccccc;
  line-height: 1.7;
}

/* Разделитель */
.divider {
  width: 100px;
  height: 2px;
  background: #00bfff;
  margin: 40px auto;
  opacity: 0.4;
  border-radius: 2px;
}

/* Шаги сотрудничества */
.steps-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px 20px;
  width: 220px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card i {
  color: #00bfff;
  margin-bottom: 15px;
}

.step-card h4 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 18px;
}

.step-card p {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.5;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,191,255,0.2);
}

/* Кнопка CTA */
.partner-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 28px;
  background-color: #00bfff;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.4px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 191, 255, 0.25);
  transition: all 0.3s ease;
}

.partner-btn:hover {
  background-color: #009acd;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px rgba(0, 191, 255, 0.35);
}

/* Карточки преимуществ */
.partner-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px 20px;
  width: 220px;
  text-align: center;
}

.benefit-card i {
  color: #00bfff;
  margin-bottom: 15px;
}

.benefit-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffffff;
}

.benefit-card p {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.5;
}
/* ==== Логотипы партнёров ==== */
.partner-logos {
    margin-top: 80px;
    text-align: center;
    background: linear-gradient(to right, #151528, #1f1f3f);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.partner-logos h3 {
    color: #00bfff;
    font-size: 26px;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 140px;
}

.logo-carousel img {
    position: absolute;
    max-width: 180px;
    opacity: 0;
    transform: scale(0.8);
    filter: grayscale(100%);
    border-radius: 8px;
    padding: 10px;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Наведение */
.logo-carousel img:hover {
    filter: none;
    transform: scale(1);
}

/* ВНИМАНИЕ: duration = 25s (весь цикл) */
.logo-carousel img:nth-child(1) {
    animation: fadeSlide 25s ease-in-out infinite;
    animation-delay: 0s;
}
.logo-carousel img:nth-child(2) {
    animation: fadeSlide 25s ease-in-out infinite;
    animation-delay: 5s;
}
.logo-carousel img:nth-child(3) {
    animation: fadeSlide 25s ease-in-out infinite;
    animation-delay: 10s;
}
.logo-carousel img:nth-child(4) {
    animation: fadeSlide 25s ease-in-out infinite;
    animation-delay: 15s;
}
.logo-carousel img:nth-child(5) {
    animation: fadeSlide 25s ease-in-out infinite;
    animation-delay: 20s;
}

/* Ключевые кадры */
@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateX(80px) scale(0.8);
    }
    4% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    16% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    20% {
        opacity: 0;
        transform: translateX(-80px) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateX(-80px) scale(0.8);
    }
}
/* ==== Инструкции по партнёрству ==== */
.how-to-partner {
    background-color: #222244;
    padding: 50px 30px;
    margin: 50px auto 20px;
    max-width: 820px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #00bfff;
}

.how-to-partner h3 {
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.steps-list {
    list-style: decimal inside;
    line-height: 1.8;
    padding-left: 0;
    font-size: 16px;
    color: #cccccc;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}
/*Часто задаваемые вопросы */
.faq-section {
  background-color: #1b1b38;
  color: #fff;
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #00aaff;
}

.faq-filters {
  text-align: center;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-btn {
  background: #2a2a4d;
  border: none;
  color: #ccc;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #00aaff;
  color: #fff;
}

.faq-items .faq-item {
  border-bottom: 1px solid #333;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  color: #ccc;
  font-size: 15px;
  line-height: 1.5;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding: 10px 15px 20px;
}
/*о нас */
.about-section {
  background: linear-gradient(to right, #151528, #1f1f3f);
  color: #fff;
  padding: 60px 20px;
}

.about-hero {
  text-align: center;
  margin-bottom: 40px;
}

.about-hero h1 {
  font-size: 32px;
  color: #00bfff;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 18px;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.about-text ul li {
  margin-bottom: 8px;
}

.about-text ul li::before {
  content: "✔ ";
  color: #00bfff;
}

.about-extra {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-subblock {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 25px 20px;
}

.about-subblock h2 {
  font-size: 20px;
  color: #00bfff;
  margin-bottom: 15px;
}

.about-subblock p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
}

.about-subblock ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-subblock ul li {
  margin-bottom: 8px;
}

.about-subblock ul li::before {
  content: "✔ ";
  color: #00bfff;
}

.about-cta {
  text-align: center;
  margin-top: 40px;
}

.cta-btn {
  display: inline-block;
  background: #00bfff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #009acd;
}
/*конец */
html {
    scroll-behavior: smooth;
}

footer {
    background-color: var(--feature-bg);
    color: var(--text-color);
    padding: 40px 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-logo {
    max-height: 80px;
    width: auto;
    display: block;
    margin: 0 auto 20px auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}
.footer-section {
    flex: 1 1 250px;
    margin: 10px;
}

.footer-section h4 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block; /* нужно для transform */
}

.footer-section a:hover {
    color: #00aaff;
    transform: scale(1.05); /* лёгкое увеличение */
    text-decoration: underline;
}

.footer-copy {
    text-align: center;
    margin-top: 30px;
    color: #cccccc;
    font-size: 13px;
    opacity: 0.8;
}
.footer-wrapper {
    background-color: #1f1f4d ; /* Тёмно-синий фон */
    color: #ffffff; /* Белый текст */
    padding: 30px 20px 40px;
    margin: 60px auto 0;
    max-width: 1000px;

    border: 2px solid #000000; /* Чёрная рамка */
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    position: relative;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif; /* Приятный шрифт */
    line-height: 1.6;
    font-size: 15px;
}

.footer-title {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.footer-section {
    flex: 1 1 250px;
    margin: 10px;
}

.footer-section h4 {
    margin-bottom: 10px;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 6px;
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-copy {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: var(--footer-color);
    opacity: 0.8;
}
.social-icons a {
    margin-right: 15px; /* Отступ между иконками */
    font-size: 1.5em;    /* Увеличенный размер иконок */
    color: var(--text-color); /* Поддержка темы */
    transition: transform 0.2s ease;
}

.social-icons a:last-child {
    margin-right: 0;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: var(--accent-color); /* Акцент при наведении */
}
/* анимация */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.animate-fade.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Политика конфиденциальности */
/* Секция политики конфиденциальности */
.privacy-container {
    background-color: #1b1b38;
    color: #ffffff;
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.privacy-container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #00aaff;
    font-size: 28px;
}

.privacy-container h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #00aaff;
    font-size: 20px;
}

.privacy-container p {
    margin-bottom: 15px;
    color: #ddd;
    font-size: 16px;
}

.privacy-container ul {
    margin: 10px 0 20px 20px;
    padding: 0;
    list-style-type: disc;
}

.privacy-container ul li {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 16px;
}

.privacy-container a {
    color: #00ccff;
    text-decoration: none;
}

.privacy-container a:hover {
    text-decoration: underline;
}
/* --- 404 PAGE STYLES --- */
.error-page {
  margin: 0;
  padding: 0;
  background: #0e0e1a;
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.error-title {
  font-size: 6rem;
  margin: 0;
  color: #ff4c60;
  animation: error-pulse 1.5s infinite;
}

.error-subtitle {
  font-size: 1.5rem;
  margin-top: 10px;
  color: #aaa;
}

.error-button {
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #ff4c60;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.error-button:hover {
  background-color: #e53c50;
}

@keyframes error-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
