:root {
  --primary: #34495E;
  --accent-green: #2ECC71;
  --accent-orange: #F39C12;
  --light-grey: #BDC3C7;
  --white: #FFFFFF;
  --dark-grey: #2C3E50;
  --border-radius: 8px;
}

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

html, body {
  height: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

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

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

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(52, 73, 94, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

header .navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

nav.navbar {
  padding: 0 2rem;
}

.nav-link {
  color: var(--primary);
  font-weight: 600;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

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

body {
  padding-top: 80px;
}

section {
  padding: 80px 0;
  position: relative;
}

section:nth-child(odd) {
  background-color: var(--white);
}

section:nth-child(even) {
  background-color: #F8F9FA;
}

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

@media (max-width: 768px) {
  .container-fluid-custom {
    padding: 0 1rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 73, 94, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: var(--white);
  font-size: 1.3rem;
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-green);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.btn:hover {
  background-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(243, 156, 18, 0.3);
  color: var(--white);
}

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

.btn-secondary:hover {
  background-color: var(--dark-grey);
}

.card {
  background-color: var(--white);
  border: 1px solid #E8E8E8;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(52, 73, 94, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(52, 73, 94, 0.15);
  transform: translateY(-4px);
}

.card-title {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

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

footer h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

footer p, footer li {
  color: #BDC3C7;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

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

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

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

@media (max-width: 768px) {
  .three-column {
    grid-template-columns: 1fr;
  }
}

.icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.icon-circle.green {
  background-color: rgba(46, 204, 113, 0.1);
  color: var(--accent-green);
}

.icon-circle.orange {
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--accent-orange);
}

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

table thead {
  background-color: var(--primary);
  color: var(--white);
}

table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid #E0E0E0;
}

table td {
  padding: 1rem;
  border: 1px solid #E0E0E0;
  color: var(--primary);
}

table tbody tr:nth-child(even) {
  background-color: #F8F9FA;
}

table tbody tr:hover {
  background-color: #EFF5FA;
}

.accordion-item {
  background-color: var(--white);
  border: 1px solid #E0E0E0;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-header {
  background-color: #F8F9FA;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: #F0F1F2;
  color: var(--accent-green);
}

.accordion-header.active {
  background-color: var(--accent-green);
  color: var(--white);
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-content.active {
  padding: 1.5rem;
  max-height: 1000px;
}

.accordion-content p {
  margin: 0;
  color: var(--primary);
}

.toggle-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.toggle-icon.active {
  transform: rotate(180deg);
}

.list-with-icons {
  list-style: none;
}

.list-with-icons li {
  padding: 1rem 0;
  padding-left: 3rem;
  position: relative;
  color: var(--primary);
  line-height: 1.8;
}

.list-with-icons li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.3rem;
}

.numbered-list {
  list-style: none;
  counter-reset: item;
}

.numbered-list li {
  counter-increment: item;
  padding: 1rem 0;
  padding-left: 3rem;
  position: relative;
  color: var(--primary);
  line-height: 1.8;
}

.numbered-list li:before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--accent-green);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.disclaimer {
  background-color: #F8F9FA;
  border-left: 4px solid var(--accent-orange);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: var(--border-radius);
}

.disclaimer h4 {
  color: var(--accent-orange);
  margin-bottom: 0.5rem;
}

.disclaimer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--primary);
}

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

@media (max-width: 768px) {
  .infographic-grid {
    grid-template-columns: 1fr;
  }
}

.flex-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.flex-item-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  color: var(--white);
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  color: var(--white);
  margin: 0;
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

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

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

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

.cookie-btn-learn:hover {
  background-color: #E67E22;
}

.full-width-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(52, 73, 94, 0.15);
}

.image-caption {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.5rem;
  font-style: italic;
  text-align: center;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  footer {
    padding: 2rem 1rem;
  }
  
  .cookie-banner.show {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
}
