:root {
  --primary-color: #0d7377;
  --primary-dark: #095456;
  --primary-light: #14a3a8;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
}

* {
  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(--white);
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
  color: var(--primary-dark);
}

h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

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

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

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

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

.hero-section h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

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

.page-header {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  text-align: center;
}

.page-header h1 {
  color: var(--primary-dark);
}

.page-header .lead {
  color: var(--text-muted);
}

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

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

.info-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
}

.info-card h3 {
  margin-bottom: 0.75rem;
}

.limitations-box {
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.limitations-box h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.limitations-box p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-section {
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section .lead {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 6px;
}

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

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 6px;
}

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

.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-info {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.thank-you-content {
  padding: 3rem 0;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content ul {
  margin-bottom: 1.5rem;
}

.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

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

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

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
  color: var(--white);
}

.footer .small {
  color: rgba(255, 255, 255, 0.6);
}

.footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

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

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

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

.img-fluid {
  border-radius: 8px;
}

.rounded {
  border-radius: 8px !important;
}

.form-control {
  border-radius: 6px;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 115, 119, 0.15);
}

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

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

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

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 2rem 0;
    text-align: center;
  }

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

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

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

  .footer {
    text-align: center;
  }
}
