* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #333;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  background: #f3f5f6;
}

a {
  color: #1b75bb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid #e2e7ea;
}

.topbar-inner {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: min(270px, 72vw);
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 15px;
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav a:hover,
.nav a.active {
  color: #1b75bb;
  text-decoration: none;
}

.nav img {
  width: 28px;
  height: 28px;
}

.hero {
  position: relative;
  min-height: 430px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 40, 56, 0.86), rgba(13, 40, 56, 0.42)),
    url("images/slider1.jpg") center / cover no-repeat;
  overflow: hidden;
}

.hero-inner {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 44px 0;
}

.hero-visual img {
  width: min(540px, 100%);
  display: block;
  height: auto;
}

.hero-list {
  margin: 0;
  padding: 26px 30px;
  list-style: none;
  background: rgba(0, 0, 0, 0.42);
  border-left: 4px solid #1b75bb;
}

.hero-list li {
  position: relative;
  margin: 8px 0;
  padding-left: 22px;
  font-size: 20px;
  font-weight: 600;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25a7df;
}

.section {
  padding: 58px 0;
  background: #fff;
}

.section.alt {
  background: #f3f5f6;
}

.section h1,
.section h2 {
  margin: 0 0 20px;
  color: #1f2f3a;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
}

.about-copy {
  max-width: 760px;
  font-size: 17px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  background: #fff;
  border-top: 4px solid #1b75bb;
  box-shadow: 0 1px 10px rgba(28, 43, 52, 0.08);
}

.contact-card p {
  margin: 0 0 16px;
}

.form-message {
  display: none;
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid #8cc0dd;
  background: #eaf7ff;
}

.form-message.error {
  border-color: #d99b9b;
  background: #fff0f0;
}

.contact-form label {
  display: block;
  margin: 12px 0 5px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8de;
  padding: 10px 11px;
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.captcha-image {
  width: 88px;
  height: 30px;
  border: 1px solid #cfd8de;
  background: #fff;
}

.captcha-input {
  max-width: 132px;
}

.button {
  margin-top: 18px;
  border: 0;
  padding: 12px 26px;
  color: #fff;
  font: inherit;
  font-weight: 700;
  background: #1b75bb;
  cursor: pointer;
}

.button:hover {
  background: #145b92;
}

.footer {
  padding: 22px 0;
  color: #d9e1e5;
  background: #20292f;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  color: #fff;
}

@media (max-width: 820px) {
  .topbar-inner {
    min-height: 122px;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0 12px;
  }

  .nav {
    justify-content: center;
  }

  .nav a {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .hero-visual img {
    margin: 0 auto;
  }

  .hero-list {
    padding: 20px;
  }

  .hero-list li {
    font-size: 17px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 20px, 1120px);
  }

  .section {
    padding: 40px 0;
  }

  .contact-card {
    padding: 20px;
  }

  .footer-inner {
    display: block;
  }
}

/* ===== PRIVACY POLICY PAGE ===== */

.pp-hero {
  padding: 42px 0 30px;
  background: #fff;
  border-bottom: 1px solid #e2e7ea;
}

.pp-eyebrow {
  margin: 0 0 8px;
  color: #1b75bb;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pp-hero h1 {
  margin: 0 0 8px;
  color: #1f2f3a;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
}

.pp-hero p {
  margin: 0;
  color: #5a6b75;
  font-size: 14px;
}

.pp-body {
  max-width: 820px;
}

.pp-body h2 {
  margin: 34px 0 12px;
  padding-left: 14px;
  border-left: 4px solid #1b75bb;
  font-size: 20px;
  font-weight: 600;
  color: #1f2f3a;
}

.pp-body h2:first-child {
  margin-top: 0;
}

.pp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 14px;
}

.pp-table th,
.pp-table td {
  padding: 10px 12px;
  border: 1px solid #d8e0e5;
  text-align: left;
  vertical-align: top;
}

.pp-table th {
  background: #f3f5f6;
  color: #1f2f3a;
}

.info-box {
  padding: 18px 20px;
  border-left: 4px solid #1b75bb;
  background: #eaf7ff;
  font-size: 15px;
}

.info-box strong {
  display: block;
  margin-bottom: 4px;
  color: #1f2f3a;
}

.placeholder {
  color: #1b75bb;
  font-weight: 700;
}

/* ===== COOKIE BAR ===== */

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 24px;
  color: #d9e1e5;
  background: #20292f;
  font-size: 14px;
  border-top: 3px solid #1b75bb;
}

.cookie-bar p {
  margin: 0;
  max-width: 820px;
}

.cookie-bar a {
  color: #fff;
  text-decoration: underline;
}

.cookie-bar-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border: 2px solid #fff;
  border-radius: 4px;
  color: #fff;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn.accept {
  background: #1b75bb;
  border-color: #1b75bb;
}

.cookie-btn:hover {
  color: #20292f;
  background: #fff;
  border-color: #fff;
}

.cookie-bar[hidden] {
  display: none;
}
