@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Open+Sans:wght@400;600&display=swap');

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

:root {
  --primary: #2C3E50;
  --accent-red: #E74C3C;
  --accent-orange: #F39C12;
  --accent-gray: #BDC3C7;
  --bg-light: #ECF0F1;
  --text-primary: #2C3E50;
  --text-secondary: #555;
  --border-light: #D5DBDB;
  --spacing-base: 1rem;
}

html, body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-primary);
  background-color: #FFFFFF;
  line-height: 1.6;
}

body {
  padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: white;
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
}

nav a:hover,
nav a.active {
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-section {
  background: linear-gradient(rgba(44, 62, 80, 0.5), rgba(44, 62, 80, 0.5)), 
              url('images/hero.jpg') center/cover no-repeat;
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.hero-section h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
}

section {
  padding: 4rem 2rem;
}

section:nth-child(even) {
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: 1fr 1fr;
}

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

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background: white;
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

table th {
  background-color: var(--primary);
  color: white;
  padding: 1.2rem;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

table tbody tr:hover {
  background-color: var(--bg-light);
}

.faq-item {
  border: 1px solid var(--border-light);
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  background-color: var(--bg-light);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background-color: #D5DBDB;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-orange);
  font-weight: 700;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding: 1.5rem;
  background-color: white;
  color: var(--text-secondary);
}

.faq-item.open .faq-answer {
  display: block;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background-color: var(--accent-orange);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: #E67E22;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.btn-secondary {
  background-color: var(--primary);
}

.btn-secondary:hover {
  background-color: #1a2632;
}

footer {
  background-color: var(--primary);
  color: white;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-section a {
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--accent-orange);
}

.footer-policies {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-policies a {
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer {
  background-color: rgba(231, 76, 60, 0.1);
  border-left: 4px solid var(--accent-red);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.blog-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

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

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-article {
  max-width: 900px;
  margin: 0 auto;
}

.blog-article img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin: 2rem 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline {
  position: relative;
  padding: 2rem 0 2rem 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--accent-orange);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3.5rem;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--accent-orange);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  background-color: var(--primary);
  padding: 2rem;
  border-radius: 4px;
  color: white;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-orange);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.comparison-matrix {
  overflow-x: auto;
  margin: 2rem 0;
}

.glossary-rail {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-orange);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.glossary-rail h4 {
  margin-top: 0;
  color: var(--primary);
}

.glossary-term {
  margin-bottom: 1rem;
}

.glossary-term strong {
  color: var(--primary);
}

.disclaimer-block {
  background-color: #FEF9E7;
  border: 1px solid #F39C12;
  border-left: 4px solid var(--accent-orange);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer-block h3 {
  color: var(--primary);
  margin-top: 0;
}

form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 4px;
  max-width: 500px;
  margin: 2rem 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--accent-orange);
  color: white;
}

.cookie-accept:hover {
  background-color: #E67E22;
}

.cookie-decline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-learn {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-learn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info-block {
  border-right: 1px solid var(--accent-gray);
}

.contact-info-block:last-child {
  border-right: none;
}

.contact-info-block h3 {
  margin-top: 0;
  color: var(--primary);
}

.contact-info-block p {
  margin-bottom: 0.5rem;
}

.contact-info-block a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-block a:hover {
  color: var(--accent-red);
}

.thank-you-content {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--bg-light);
  border-radius: 4px;
}

.thank-you-content h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.thank-you-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.highlight {
  color: var(--accent-orange);
  font-weight: 600;
}

.divider {
  height: 1px;
  background-color: var(--border-light);
  margin: 2rem 0;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

  .two-column.reverse > :first-child,
  .two-column.reverse > :last-child {
    order: unset;
  }

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

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

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

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

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

  .cookie-btn {
    width: 100%;
  }

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

  .contact-info-block {
    border-right: none;
    border-bottom: 1px solid var(--accent-gray);
    padding-bottom: 1.5rem;
  }

  .contact-info-block:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }

  header {
    padding: 0.75rem 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 0.25rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .hero-section {
    padding: 3rem 1rem;
    min-height: 400px;
  }

  h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .stat-strip {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  table {
    font-size: 0.9rem;
  }

  table th,
  table td {
    padding: 0.75rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  footer {
    padding: 2rem 1rem;
  }

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-text {
    font-size: 0.85rem;
  }

  .cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}
