:root {
  --primary: #2C3E50;
  --secondary: #BDC3C7;
  --accent-green: #27AE60;
  --accent-brown: #7F8C8D;
  --white: #FFFFFF;
  --light-gray: #ECF0F1;
  --dark-gray: #34495E;
  --border-color: #BDC3C7;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--primary);
  background-color: var(--white);
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.container-full {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  border-bottom: 2px solid var(--secondary);
  padding: 15px 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 24px;
  color: var(--primary);
  transition: color 0.3s ease;
}

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

.logo img {
  width: 40px;
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

nav a.active {
  color: var(--accent-green);
  font-weight: 600;
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0 30px;
  margin-top: 80px;
  border-top: 3px solid var(--accent-green);
}

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

.footer-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent-green);
}

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

.footer-section ul li {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.8;
}

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

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

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

h1, h2, h3 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

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

h2 {
  font-size: 36px;
  color: var(--primary);
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
  color: var(--primary);
}

p {
  margin-bottom: 16px;
  line-height: 1.8;
}

section {
  padding: 60px 0;
}

.hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(135deg, rgba(44, 62, 80, 0.6) 0%, rgba(44, 62, 80, 0.3) 50%, rgba(44, 62, 80, 0) 100%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
}

.hero h1 {
  font-size: 56px;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

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

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.card-content {
  padding: 30px;
}

.card h3 {
  margin-bottom: 15px;
}

.card p {
  font-size: 14px;
  color: var(--accent-brown);
  line-height: 1.8;
}

.section-dark {
  background-color: var(--primary);
  color: var(--white);
}

.section-dark h2 {
  color: var(--white);
}

.section-dark h3 {
  color: var(--white);
}

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

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

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

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

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

.button {
  display: inline-block;
  background-color: var(--accent-green);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin: 10px 0;
}

.button:hover {
  background-color: #229954;
  box-shadow: 0 6px 15px rgba(39, 174, 96, 0.3);
}

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

.button-secondary:hover {
  background-color: #6b7a7f;
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

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

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--secondary);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--primary);
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

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

.disclaimer {
  background-color: #FFF9E6;
  border-left: 4px solid var(--accent-brown);
  padding: 20px;
  border-radius: 6px;
  margin: 30px 0;
  font-size: 14px;
  color: var(--primary);
  line-height: 1.8;
}

.disclaimer strong {
  color: var(--accent-brown);
}

.table-responsive {
  overflow-x: auto;
  margin: 30px 0;
}

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

table th {
  background-color: var(--primary);
  color: var(--white);
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

table td {
  padding: 15px;
  border-bottom: 1px solid var(--secondary);
}

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

.list-styled {
  list-style: none;
  padding: 0;
}

.list-styled li {
  padding: 12px 0 12px 30px;
  position: relative;
  margin-bottom: 8px;
}

.list-styled li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
  font-size: 16px;
}

.stat-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  margin: 20px 0;
}

.stat-box h3 {
  color: var(--accent-green);
  font-size: 32px;
  margin-bottom: 10px;
}

.stat-box p {
  color: rgba(255, 255, 255, 0.9);
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--secondary);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 40px;
  width: 48%;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  text-align: right;
  padding-right: 50px;
}

.timeline-item:nth-child(even) {
  margin-left: 52%;
  text-align: left;
  padding-left: 50px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--accent-green);
  border: 3px solid var(--white);
  border-radius: 50%;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 2px var(--accent-brown);
}

.content-section {
  max-width: 900px;
  margin: 0 auto;
}

.breadcrumb {
  margin-bottom: 30px;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb span {
  color: var(--secondary);
  margin: 0 8px;
}

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

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

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

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

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

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

.cookie-btn-link {
  background-color: transparent;
  color: var(--accent-green);
  border: none;
  text-decoration: underline;
}

.cookie-btn-link:hover {
  color: var(--white);
}

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

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  .hero {
    height: 50vh;
    min-height: 350px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

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

  .two-column.reverse {
    direction: ltr;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

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

  .cookie-btn {
    width: 100%;
  }

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

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    width: 100%;
    text-align: left;
    padding-left: 40px;
    margin-left: 0;
  }

  .timeline-item:nth-child(odd) {
    width: 100%;
    text-align: left;
    padding-left: 40px;
    padding-right: 0;
    margin-left: 0;
  }

  .timeline-item::before {
    left: 0;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

  section {
    padding: 40px 0;
  }

  nav ul {
    gap: 10px;
  }

  form {
    padding: 20px;
  }

  .hero-content {
    padding: 20px;
  }

  .header-content {
    padding: 0 15px;
  }
}
