* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background-color: #F2E9E4;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #0A2239;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #F2E9E4;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #F2E9E4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: #D36E5C;
}

main {
  margin-top: 70px;
  padding-top: 60px;
}

section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
}

h1 {
  font-size: 64px;
  font-weight: 800;
  color: #0A2239;
  margin-bottom: 20px;
  line-height: 1.2;
}

h2 {
  font-size: 42px;
  font-weight: bold;
  color: #0A2239;
  margin-bottom: 25px;
  line-height: 1.2;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  color: #0A2239;
  margin-bottom: 15px;
}

p {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6em;
}

.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-full {
  width: 100%;
  padding: 80px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.two-col-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.two-col-reverse > :first-child {
  order: 2;
}

.two-col-reverse > :last-child {
  order: 1;
}

.img-responsive {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

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

.card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 20px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  line-height: 1.5;
}

button, .btn {
  background-color: #0A2239;
  color: #F2E9E4;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
}

button:hover, .btn:hover {
  background-color: #D36E5C;
  box-shadow: 0 4px 12px rgba(211, 110, 92, 0.3);
}

.hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #1a4d66 100%);
  color: #F2E9E4;
  padding: 100px 20px;
  text-align: center;
}

.hero-section h1 {
  color: #F2E9E4;
  margin-bottom: 20px;
}

.hero-section p {
  color: #F2E9E4;
  font-size: 20px;
  margin-bottom: 30px;
}

.disclaimer {
  background-color: #8DAA91;
  color: white;
  padding: 20px;
  border-radius: 6px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.disclaimer strong {
  font-weight: 700;
}

footer {
  background-color: #0A2239;
  color: #F2E9E4;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-section {
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #D36E5C;
  margin-bottom: 15px;
}

.footer-section p, .footer-section a {
  font-size: 14px;
  color: #F2E9E4;
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.footer-section a:hover {
  color: #D36E5C;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-bottom {
  border-top: 1px solid rgba(242, 233, 228, 0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #8DAA91;
}

form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0A2239;
  font-size: 16px;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: #D36E5C;
  box-shadow: 0 0 0 3px rgba(211, 110, 92, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0A2239;
  color: #F2E9E4;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  background-color: #D36E5C;
}

.cookie-buttons button.decline {
  background-color: #8DAA91;
}

.cookie-buttons a {
  color: #F2E9E4;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}

@media (max-width: 768px) {
  .two-col, .two-col-reverse {
    grid-template-columns: 1fr;
  }

  .two-col-reverse > :first-child {
    order: initial;
  }

  .two-col-reverse > :last-child {
    order: initial;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  section {
    padding: 50px 20px;
  }

  nav {
    gap: 15px;
    font-size: 12px;
  }

  .logo {
    font-size: 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }
}

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

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.bg-light {
  background-color: #F2E9E4;
}

.bg-alt {
  background-color: #f9f7f5;
}

ul {
  margin-left: 20px;
  margin-bottom: 15px;
  line-height: 1.8;
}

li {
  margin-bottom: 10px;
  font-size: 18px;
}

.content-block {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

a {
  color: #D36E5C;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 30px;
}
