:root {
  --primary-blue: #0D47A1;
  --light-bg: #F8F9FA;
  --text-dark: #1A1A1A;
  --text-light: #555555;
  --border-light: #E0E0E0;
  --white: #FFFFFF;
}

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

html, body {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding: 40px 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 15px 20px;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
  transition: opacity 0.36s ease;
}

.logo:hover {
  opacity: 0.8;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.36s ease;
}

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

h1 {
  font-size: 2.72rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

h2 {
  font-size: 2.12rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 30px 0 20px 0;
  color: var(--text-dark);
}

h3 {
  font-size: 1.59rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 25px 0 15px 0;
  color: var(--text-dark);
}

p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--text-light);
}

.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1565C0 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
  margin: -40px -20px 40px -20px;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.hero-image {
  margin-top: 30px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

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

.two-column-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.section {
  margin: 50px 0;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-light);
}

.section:last-child {
  border-bottom: none;
}

footer {
  background-color: var(--light-bg);
  border-top: 1px solid var(--border-light);
  padding: 40px 20px;
  margin-top: 50px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

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

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.36s ease;
}

.footer-section a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  text-align: center;
}

.disclaimer-box {
  background-color: #E3F2FD;
  border-left: 4px solid var(--primary-blue);
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
  font-size: 0.95rem;
}

.faq-item {
  margin: 20px 0;
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: 10px;
  border-left: 3px solid var(--primary-blue);
  transition: transform 0.36s ease, box-shadow 0.36s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item strong {
  color: var(--primary-blue);
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

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

.blog-card {
  background-color: var(--light-bg);
  border-radius: 10px;
  padding: 25px;
  transition: transform 0.36s ease, box-shadow 0.36s ease;
  border: 1px solid var(--border-light);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(13, 71, 161, 0.15);
}

.blog-card h3 {
  margin-top: 0;
  color: var(--primary-blue);
}

.blog-card a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.36s ease;
}

.blog-card a:hover {
  opacity: 0.8;
}

.blog-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

form {
  max-width: 600px;
  margin: 30px 0;
}

label {
  display: block;
  margin: 15px 0 5px 0;
  font-weight: 600;
  color: var(--text-dark);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.36s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

button {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.36s ease, transform 0.36s ease;
}

button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.cta-link {
  display: inline-block;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: opacity 0.36s ease;
}

.cta-link:hover {
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  z-index: 999;
  display: none;
  animation: slideUp 0.36s ease;
}

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-light);
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.cookie-buttons .cookie-accept {
  background-color: var(--primary-blue);
}

.cookie-buttons .cookie-decline {
  background-color: #757575;
}

@media (max-width: 768px) {
  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 0.85rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 15px;
  }

  .header-container {
    flex-direction: column;
    gap: 10px;
  }

  .logo {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 10px;
    font-size: 0.8rem;
  }

  main {
    padding: 20px 15px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    font-size: 0.95rem;
  }

  .section {
    padding: 20px 0;
  }
}
