:root {
  --primary-color: #0d7377;
  --primary-dark: #0a5b5e;
  --primary-light: #14a7ab;
  --secondary-color: #f8f9fa;
  --accent-color: #2c3e50;
  --text-primary: #2c3e50;
  --text-secondary: #6c757d;
  --background-light: #ffffff;
  --background-section: #f8f9fa;
}

* {
  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-primary);
  line-height: 1.6;
  background-color: var(--background-light);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.brand-name {
  color: var(--primary-color);
  font-weight: 700;
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.05) 0%, rgba(248, 249, 250, 0.05) 100%);
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-section .lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.disclaimer-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.75rem 1rem;
  background-color: rgba(13, 115, 119, 0.1);
  border-radius: 8px;
  display: inline-block;
}

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

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.content-section ul {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.page-header {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.05) 0%, rgba(248, 249, 250, 0.05) 100%);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.05) 0%, rgba(248, 249, 250, 0.05) 100%);
}

.cta-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 115, 119, 0.2);
}

.footer {
  padding: 3rem 0 1.5rem;
  background-color: var(--accent-color);
  color: white;
  margin-top: 4rem;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

.footer a:hover {
  color: white;
}

.footer ul {
  padding-left: 0;
}

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

img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info {
  padding: 1.5rem;
  background-color: var(--background-section);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

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

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

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

.cookie-banner .btn-light {
  background-color: white;
  color: var(--accent-color);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
}

.cookie-banner .btn-light:hover {
  background-color: var(--background-section);
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .content-section h3 {
    font-size: 1.25rem;
  }

  .content-section p,
  .content-section ul {
    font-size: 1rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .cookie-banner .text-right {
    text-align: center;
    margin-top: 1rem;
  }
}

.table {
  background-color: white;
}

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