:root {
  --primary-color: #16697A;
  --primary-dark: #0D4552;
  --text-color: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
}

* {
  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-color);
  line-height: 1.6;
  background: #fff;
}

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
}

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

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 150ms ease;
}

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

.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 150ms ease;
}

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

.hero-section {
  background: linear-gradient(135deg, rgba(22,105,122,0.05) 0%, rgba(22,105,122,0.1) 100%);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

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

.section-with-image {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.section-image-left {
  order: -1;
}

.section-content {
  flex: 1;
}

.disclaimer-box {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

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

.table-custom {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.table-custom th,
.table-custom td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.table-custom th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--primary-dark);
}

.btn-soft {
  background: var(--primary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 200ms ease;
  display: inline-block;
}

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

.faq-section {
  background: var(--bg-light);
  padding: 3rem 0;
  margin: 3rem 0;
  border-radius: 8px;
}

.faq-item {
  background: #fff;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border-left: 3px solid var(--primary-color);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 150ms ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

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

footer a:hover {
  color: #fff;
}

footer ul {
  list-style: none;
  padding: 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

.btn-accept {
  background: var(--primary-color);
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  transition: background 150ms ease;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-with-image {
    flex-direction: column;
  }
  
  .section-image {
    max-width: 100%;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
}
