:root {
  --primary: #2C3E50;
  --accent-orange: #F39C12;
  --accent-green: #27AE60;
  --secondary-silver: #BDC3C7;
  --secondary-light: #ECF0F1;
  --text-dark: #2C3E50;
  --text-light: #5A6C7D;
  --border-color: #BDC3C7;
  --bg-light: #ECF0F1;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
  font-size: 16px;
}

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

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

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

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

nav a {
  color: white;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 70px;
  padding-bottom: 0;
}

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

section {
  padding: 4rem 0;
}

.hero-section {
  background-color: var(--primary);
  color: white;
  padding: 6rem 0;
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 70px);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.section-with-image {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.section-text {
  flex: 1;
}

.section-image {
  flex: 1;
}

.section-image img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.alt-section {
  flex-direction: row-reverse;
}

.full-width-section {
  background-color: var(--bg-light);
  padding: 6rem 0;
  margin: 4rem 0;
}

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

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

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

.card p {
  margin-bottom: 0;
}

.button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-orange);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
}

.button:hover {
  background-color: #E87E0A;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.button-secondary {
  background-color: var(--accent-green);
}

.button-secondary:hover {
  background-color: #1E8449;
}

.button-text {
  background-color: transparent;
  color: var(--accent-orange);
  border-bottom: 2px solid var(--accent-orange);
  padding: 0.5rem 0;
}

.button-text:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

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

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

.footer-section h4 {
  color: var(--accent-orange);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

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

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

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-orange), transparent);
  margin: 3rem 0;
}

.accent-line {
  width: 60px;
  height: 3px;
  background-color: var(--accent-orange);
  margin: 1rem 0;
}

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

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

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

li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.disclaimer {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-orange);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  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;
}

.form-submit {
  margin-top: 2rem;
}

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

.cookie-content {
  flex: 1;
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

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

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

.cookie-reject: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);
}

.stat-box {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}

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

.stat-label {
  color: var(--text-dark);
  font-weight: 600;
}

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

.timeline-item {
  margin-bottom: 3rem;
  padding-left: 3rem;
  position: relative;
}

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

.timeline-item:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 12px;
  width: 2px;
  height: calc(100% + 1rem);
  background-color: var(--border-color);
}

.timeline-item:last-child:after {
  display: none;
}

.timeline-item h3 {
  margin-top: 0;
}

.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

th {
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

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

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

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .header-container {
    padding: 0 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--primary);
    display: none;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    display: flex;
  }

  nav a {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-section {
    padding: 3rem 0;
  }

  .hero-content {
    flex-direction: column;
    gap: 2rem;
  }

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

  .hero-image img {
    height: 250px;
  }

  .section-with-image {
    flex-direction: column;
    gap: 2rem;
  }

  .section-with-image.alt-section {
    flex-direction: column;
  }

  .section-image img {
    max-height: 250px;
  }

  section {
    padding: 2rem 0;
  }

  .container {
    padding: 0 1rem;
  }

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

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

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

  nav ul {
    gap: 0;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.95rem;
  }

  .button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  nav ul {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
}
