:root {
  --primary-teal: #2c7a7b;
  --teal-light: #4fd1c5;
  --charcoal: #2d3748;
  --light-bg: #f7fafc;
  --white: #ffffff;
  --text-dark: #1a202c;
  --text-muted: #718096;
  --border-light: #e2e8f0;
}

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

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

.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-teal);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--primary-teal);
  text-decoration: none;
}

.nav-link {
  color: var(--charcoal);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  padding: 4rem 0;
  border-radius: 12px;
  margin-bottom: 3rem;
}

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

.section-title {
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-teal) 0%, var(--teal-light) 100%);
  border-radius: 2px;
}

.content-section {
  padding: 3rem 0;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--teal-light) 100%);
  color: var(--white);
  padding: 3rem 0;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.cta-button {
  background-color: var(--white);
  color: var(--primary-teal);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  color: var(--primary-teal);
  text-decoration: none;
}

.disclaimer-box {
  background-color: var(--light-bg);
  border-left: 4px solid var(--primary-teal);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--charcoal);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a202c 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--teal-light);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.footer a:hover {
  color: var(--teal-light);
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

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

.cookie-banner.active {
  display: block;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-accept-btn {
  background-color: var(--primary-teal);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-accept-btn:hover {
  background-color: var(--teal-light);
}

.table {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.table th {
  background-color: var(--primary-teal);
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .content-section {
    padding: 2rem 0;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
}
