:root {
  --primary-color: #283593;
  --bg-white: #FFFFFF;
  --bg-gray: #F5F5F5;
  --text-dark: #212121;
  --text-medium: #616161;
  --text-light: #757575;
  --border-color: #E0E0E0;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --transition: 0.25s ease;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  line-height: 1.68;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

h1 {
  font-size: 2.9rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-weight: 600;
}

h2 {
  font-size: 2.15rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 600;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #1A237E;
}

.header {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo:hover {
  color: var(--primary-color);
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.hero {
  margin-top: 80px;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
  padding: 48px 0;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background-color: var(--bg-gray);
}

.content-block {
  margin-bottom: 48px;
}

.content-with-image {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.content-with-image.reverse {
  flex-direction: row-reverse;
}

.content-with-image .text-content {
  flex: 1;
}

.content-with-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-full {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.disclaimer-box {
  background: #FFF3E0;
  border-left: 4px solid #FF9800;
  padding: 24px;
  margin: 32px 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: #E65100;
  margin-bottom: 12px;
}

.cta-box {
  background: var(--bg-gray);
  padding: 48px;
  border-radius: 8px;
  text-align: center;
  margin: 48px 0;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: #1A237E;
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(40, 53, 147, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  background: #E3F2FD;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.faq-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: var(--primary-color);
}

.footer {
  background: var(--text-dark);
  color: #BDBDBD;
  padding: 48px 0 24px;
  margin-top: 64px;
}

.footer h3 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.footer a {
  color: #BDBDBD;
}

.footer a:hover {
  color: var(--bg-white);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #424242;
  color: #9E9E9E;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  padding: 24px;
  z-index: 2000;
  display: none;
}

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

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.contact-info {
  line-height: 1.8;
}

.contact-info svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  fill: var(--primary-color);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  body {
    font-size: 1rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .nav.active {
    display: flex;
  }

  .hero {
    min-height: 400px;
    margin-top: 70px;
  }

  .content-with-image {
    flex-direction: column;
  }

  .content-with-image.reverse {
    flex-direction: column;
  }

  .content-with-image img {
    max-width: 100%;
  }

  .section {
    padding: 40px 0;
  }

  .cta-box {
    padding: 32px 16px;
  }

  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }

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