:root {
  --primary-color: #0d7377;
  --primary-dark: #0a5c5f;
  --primary-light: #14919b;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --border-color: #e9ecef;
}

* {
  box-sizing: border-box;
}

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

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 5rem 0;
}

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

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

.hero-section .disclaimer-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

.hero-section img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  color: var(--bg-white);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header .lead {
  font-size: 1.125rem;
  opacity: 0.9;
}

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

.content-block h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

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

.content-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.content-block img {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.info-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.limitations-box {
  background: var(--bg-white);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.limitations-box p {
  margin-bottom: 1rem;
}

.limitations-box p:last-child {
  margin-bottom: 0;
}

.limitations-box strong {
  color: var(--text-dark);
}

.cta-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.cta-section h2 {
  color: var(--text-dark);
}

.cta-section p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-outline-secondary {
  color: var(--text-muted);
  border-color: var(--border-color);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: var(--text-muted);
  border-color: var(--text-muted);
  color: var(--bg-white);
}

.contact-info-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.contact-info-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-form-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

.contact-form-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

.footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 4rem 0 2rem;
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

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

.cookie-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin: 0;
}

.cookie-banner .btn-primary {
  padding: 0.5rem 1.5rem;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 3rem 0;
  }

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

  .hero-section img {
    margin-top: 2rem;
  }

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

  .page-header {
    padding: 3rem 0;
  }

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

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

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

  .cookie-banner .row {
    flex-direction: column;
  }

  .cookie-banner .col-md-3 {
    margin-top: 1rem;
    text-align: left !important;
  }

  .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .btn.mr-2 {
    margin-right: 0 !important;
  }
}
