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

:root {
  --primary: #87CEEB;
  --accent1: #E2725B;
  --accent2: #98FB98;
  --neutral: #D3D3D3;
  --dark: #333333;
  --light: #f5f5f5;
  --white: #ffffff;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

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

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

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

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

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

section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-hero {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(135, 206, 235, 0.2) 100%);
  text-align: center;
  padding: 5rem 2rem;
}

.section-hero h1 {
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.section-hero img {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 300px;
}

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

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

.section-content.reverse {
  direction: rtl;
}

.section-content.reverse > * {
  direction: ltr;
}

.section-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 350px;
}

.section-text {
  padding: 1rem;
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent1);
  color: var(--white);
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: #d1654d;
  transform: translateY(-2px);
}

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

.card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

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

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

.card p {
  font-size: 0.95rem;
  color: #666;
}

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

.list-section ul {
  list-style: none;
  padding-left: 0;
}

.list-section li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.list-section li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-weight: bold;
  font-size: 1.2rem;
}

.table-section {
  margin-top: 2rem;
  overflow-x: auto;
}

.table-section table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

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

.table-section td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.table-section tr:hover {
  background-color: rgba(135, 206, 235, 0.1);
}

.disclaimer-section {
  background-color: #fff3cd;
  border-left: 5px solid var(--accent1);
  padding: 1.5rem;
  border-radius: 5px;
  margin-top: 2rem;
}

.disclaimer-section h3 {
  color: var(--accent1);
  margin-bottom: 1rem;
}

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

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

.footer-section h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

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

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

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

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

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

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

.cookie-reject {
  background-color: #666;
  color: var(--white);
}

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

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

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

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .navbar {
    padding: 0 1rem;
    flex-direction: column;
    gap: 1rem;
  }

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

  .section-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-content.reverse {
    direction: ltr;
  }

  section {
    padding: 2rem 1rem;
  }

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

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

  .cookie-buttons {
    width: 100%;
    gap: 0.5rem;
  }

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

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

  h2 {
    font-size: 1.3rem;
  }

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

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

  section {
    padding: 1.5rem 1rem;
  }
}
