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

:root {
  --primary-bg: #F0F4F8;
  --primary-blue: #3498DB;
  --primary-green: #2ECC71;
  --primary-purple: #9B59B6;
  --dark-text: #2C3E50;
  --light-gray: #ECF0F1;
  --border-color: #BDC3C7;
}

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

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

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

header {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 0.8rem 0;
}

.navbar {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

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

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

footer {
  background-color: #34495E;
  color: white;
  padding: 60px 15px;
  margin-top: 120px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #ECF0F1;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: #BDC3C7;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 15px;
  color: white;
}

.hero-content h1 {
  color: white;
  font-size: 3rem;
}

section {
  padding: 100px 15px;
  max-width: 1440px;
  margin: 0 auto;
}

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

.image-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefits-text h2 {
  margin-bottom: 2rem;
}

.benefit-item {
  margin-bottom: 2rem;
}

.benefit-item strong {
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.three-column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 3rem;
}

.column-card {
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  transition: box-shadow 0.3s ease;
}

.column-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.column-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.timeline-section {
  margin-top: 3rem;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
  z-index: 0;
}

.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}

.timeline-circle {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

.timeline-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.9rem;
}

.full-width-section {
  background-color: white;
  padding: 100px 15px;
}

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

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.col-highlight {
  padding: 30px;
  background-color: var(--light-gray);
  border-left: 4px solid var(--primary-blue);
  border-radius: 4px;
}

.col-highlight strong {
  color: var(--primary-purple);
}

.styled-list {
  margin-top: 2rem;
}

.styled-list li {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 30px;
  position: relative;
}

.styled-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.2rem;
}

.editorial-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background-color: #F8F9FA;
  padding: 50px;
  border-radius: 8px;
  margin-top: 2rem;
}

.panel-block h3 {
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
}

.info-graphic {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 2rem 0;
}

.form-container {
  max-width: 600px;
  margin: 40px auto;
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-disclaimer {
  background-color: #E8F4F8;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--dark-text);
  border-left: 4px solid var(--primary-blue);
}

.btn {
  padding: 12px 30px;
  background-color: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn:hover {
  background-color: #2980B9;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

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

.btn-secondary:hover {
  background-color: #27AE60;
}

.btn-text {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 10px 24px;
}

.btn-text:hover {
  background-color: var(--primary-blue);
  color: white;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  display: none;
  border-top: 4px solid var(--primary-blue);
}

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

.cookie-content {
  flex: 1;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--primary-green);
  color: white;
}

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

.cookie-reject {
  background-color: var(--light-gray);
  color: var(--dark-text);
}

.cookie-reject:hover {
  background-color: #D5DBDB;
}

.cookie-learn {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.cookie-learn:hover {
  background-color: var(--primary-blue);
  color: white;
}

.disclaimer-section {
  background-color: #FFF3CD;
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
  border-left: 4px solid #FFC107;
}

.disclaimer-section h3 {
  color: #856404;
  margin-bottom: 1rem;
}

.disclaimer-section p {
  color: #856404;
}

.success-message {
  max-width: 600px;
  margin: 60px auto;
  padding: 40px;
  background-color: white;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--primary-green);
}

.success-message h1 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.success-message a {
  color: var(--primary-blue);
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}

.success-message a:hover {
  text-decoration: underline;
}

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

  h2 {
    font-size: 1.5rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .two-column,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .timeline {
    flex-direction: column;
    gap: 40px;
  }

  .timeline::before {
    left: 29px;
    top: 0;
    right: auto;
    height: 100%;
    width: 2px;
  }

  .timeline-item {
    margin-left: 100px;
    text-align: left;
  }

  .timeline-circle {
    width: 60px;
    height: 60px;
    margin: 0 0 0 -90px;
  }

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

  .editorial-panel {
    grid-template-columns: 1fr;
  }

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

  .form-container {
    margin: 20px;
    padding: 20px;
  }

  .cookie-banner.show {
    flex-direction: column;
    gap: 15px;
  }

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

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

  section {
    padding: 60px 15px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}
