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

:root {
  --primary: #0A2E36;
  --accent-light: #E7F0C3;
  --accent-yellow: #FFC857;
  --accent-red: #D9534F;
  --gray-light: #f8f9fa;
  --gray-text: #333;
  --spacing-base: 1rem;
  --content-max: 1280px;
}

html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  color: var(--gray-text);
  background-color: #fff;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

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

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

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1rem var(--spacing-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-light);
}

.logo a {
  color: var(--accent-light);
}

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

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  color: var(--accent-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

footer {
  background-color: var(--primary);
  color: var(--accent-light);
  padding: 3rem var(--spacing-base);
  margin-top: 4rem;
}

footer a {
  color: var(--accent-light);
}

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

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

.footer-section h3 {
  color: var(--accent-light);
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-section p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-divider {
  border-top: 1px solid rgba(231, 240, 195, 0.3);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(231, 240, 195, 0.7);
}

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--spacing-base);
}

section {
  padding: 4rem var(--spacing-base);
}

.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 46, 54, 0.5);
  z-index: 1;
}

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

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  color: rgba(231, 240, 195, 0.95);
  font-size: 1.2rem;
  margin-bottom: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-top: 0;
}

.section-title p {
  font-size: 1.05rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

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

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

.two-column-text h3 {
  margin-top: 0;
}

.two-column img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

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

.card {
  background-color: var(--gray-light);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(10, 46, 54, 0.1);
  border-color: var(--accent-yellow);
}

.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.editorial-panel {
  background-color: var(--accent-light);
  padding: 2rem;
  border-left: 4px solid var(--accent-yellow);
  margin: 2rem 0;
  border-radius: 4px;
}

.editorial-panel h3 {
  margin-top: 0;
}

.editorial-panel p {
  margin-bottom: 0;
}

.list-section ul {
  list-style: none;
  margin: 0 0 2rem 0;
}

.list-section li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.list-section li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.cta-button-alt {
  display: inline-block;
  background-color: transparent;
  color: var(--primary);
  padding: 0.875rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.cta-button-alt:hover {
  background-color: var(--primary);
  color: white;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #ddd;
  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-yellow);
  box-shadow: 0 0 0 3px rgba(255, 200, 87, 0.1);
}

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

.form-disclaimer {
  background-color: var(--accent-light);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--accent-yellow);
  color: var(--primary);
}

.disclaimer-section {
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.9rem;
  line-height: 1.7;
  border-left: 4px solid var(--accent-red);
}

.disclaimer-section h4 {
  margin-top: 0;
  color: var(--accent-red);
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  cursor: pointer;
  padding: 1rem;
  background-color: var(--gray-light);
  border-left: 4px solid var(--accent-yellow);
  border-radius: 4px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--accent-light);
}

.faq-answer {
  padding: 1rem;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 4px 4px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

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

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

.cookie-content {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-content a {
  color: var(--accent-yellow);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  min-width: fit-content;
}

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

.cookie-btn-accept {
  background-color: var(--accent-yellow);
  color: var(--primary);
}

.cookie-btn-accept:hover {
  opacity: 0.9;
}

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

.cookie-btn-decline:hover {
  background-color: rgba(231, 240, 195, 0.1);
}

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

.cookie-btn-learn:hover {
  background-color: rgba(231, 240, 195, 0.1);
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

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

  nav ul {
    gap: 1rem;
    justify-content: center;
  }

  nav a {
    font-size: 0.85rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 2.5rem var(--spacing-base);
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

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

  h2 {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 0.75rem;
  }

  nav a {
    font-size: 0.75rem;
  }

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

  .hero {
    min-height: 350px;
  }

  section {
    padding: 1.5rem var(--spacing-base);
  }
}
