/* Хедер */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0px 20px;
  /* Додано px */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Базові стилі */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #0b2250;
  line-height: 1.6;
}

.logo img {
  width: 180px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-list a {
  text-decoration: none;
  color: #001e5b;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-list a:hover {
  color: #eacb6c;
}




html {
  scroll-behavior: smooth;
}







.footer {
  background-color: #0c1c3d;
  color: #fff;
  font-family: sans-serif;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  max-width: 600px;
}

.footer-left .logo {
  height: 80px;
  margin-bottom: 20px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-right {
  display: flex;
  align-items: center;
}

.linkedin-link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.linkedin-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.footer-nav {
  text-align: center;
  margin: 30px 0 10px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #22314f;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
  color: #888;
  font-size: 13px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #bbb;
  margin: 0 10px;
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  text-decoration: underline;
}







body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #0A2156;
  margin: 0;
  padding: 0;
}

.cookie-policy-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

h1 {
  font-size: 48px;
  color: #0A2156;
  margin-bottom: 30px;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

a {
  color: #0E43FF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  h1 {
    font-size: 32px;
  }

  p {
    font-size: 15px;
  }
}

.cookie-table {
  max-width: 900px;
  margin: 40px auto;
  border: 1px solid #0a2156;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #0a2156;
  background-color: white;
}

.cookie-table h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.cookie-table p {
  font-size: 15px;
  margin-bottom: 20px;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
  border-top: 1px solid #ccc;
  padding: 10px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.cookie-table th {
  font-weight: 600;
  color: #0a2156;
}

.cookie-table a {
  color: #0e43ff;
  text-decoration: none;
}

.cookie-table a:hover {
  text-decoration: underline;
}
