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

:root {
  --primary: #2C3E50;
  --accent-gold: #F39C12;
  --accent-green: #27AE60;
  --accent-light: #BDC3C7;
  --white: #FFFFFF;
  --light-bg: #ECF0F1;
  --text-dark: #2C3E50;
  --text-light: #34495E;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.2rem;
  letter-spacing: -0.3px;
  border-bottom: 3px solid var(--accent-gold);
  padding-bottom: 0.5rem;
  max-width: fit-content;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: -0.2px;
}

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

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

a:hover {
  color: var(--accent-green);
  text-decoration: underline;
}

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

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
}

.nav a:hover {
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
  text-decoration: none;
}

.nav a.active {
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, rgba(44, 62, 80, 0.9) 100%);
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero h1 {
  color: var(--white);
  font-size: 2.5rem;
}

.hero p {
  color: var(--accent-light);
  font-size: 1.1rem;
}

.hero img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.section {
  margin-bottom: 4rem;
  padding: 2.5rem 3rem;
  background-color: var(--light-bg);
  border-radius: 8px;
}

.section h2 {
  margin-bottom: 2rem;
}

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

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

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

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-left: 4px solid var(--accent-gold);
}

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

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

.card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

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

.btn:hover {
  background-color: var(--accent-green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--white);
}

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

.btn-secondary:hover {
  background-color: var(--accent-gold);
}

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

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

.footer-section h3 {
  color: var(--accent-gold);
  margin-top: 0;
}

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

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

.footer-section a {
  color: var(--accent-light);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-gold);
  text-decoration: none;
}

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

.disclaimer {
  background-color: rgba(243, 156, 18, 0.1);
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer h4 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.disclaimer p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-light);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--accent-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px rgba(243, 156, 18, 0.2);
}

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

.form-disclaimer {
  background-color: var(--light-bg);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  border-left: 4px solid var(--accent-green);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
}

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

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

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

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

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

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

.cookie-decline {
  background-color: transparent;
  color: var(--accent-light);
  border: 1px solid var(--accent-light);
}

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

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

.cookie-learn:hover {
  background-color: var(--accent-gold);
  color: var(--white);
}

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

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

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.article-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.article-item:hover {
  transform: translateY(-4px);
}

.article-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

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

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

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

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

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

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

  .cookie-banner.show {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .article-list {
    grid-template-columns: 1fr;
  }

  .article-item {
    grid-template-columns: 1fr;
  }

  main {
    padding: 2rem 1rem;
  }

  .section {
    padding: 1.5rem;
  }
}

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1rem;
  }

  header {
    padding: 1rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .nav {
    gap: 0.5rem;
  }

  .nav a {
    font-size: 0.85rem;
  }
}
