:root {
  --primary-color: #0a4d68;
  --primary-dark: #083d52;
  --primary-light: #0f6182;
  --accent-color: #05bfdb;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

* {
  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);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

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

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 77, 104, 0.85) 0%, rgba(5, 191, 219, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-section {
  font-size: 1.05rem;
}

.content-section p {
  margin-bottom: 1.25rem;
}

.content-section ul {
  margin-bottom: 1.25rem;
}

.content-section img {
  max-width: 100%;
  height: auto;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  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 8px rgba(0, 0, 0, 0.15);
}

.disclaimer-box {
  border-left: 4px solid var(--primary-color);
  background-color: var(--bg-light);
}

.disclaimer-box ul {
  padding-left: 1.5rem;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
}

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

.contact-form-box {
  background-color: var(--bg-light);
}

.contact-info h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.thank-you-box {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.footer {
  margin-top: 3rem;
}

.footer h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

.footer a:hover {
  opacity: 0.8;
}

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

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

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

@media (max-width: 768px) {
  .hero-section {
    height: 400px;
  }

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

  .hero-overlay .lead {
    font-size: 1rem;
  }

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

  .section-title {
    font-size: 1.75rem;
  }

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

  .cookie-banner .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 350px;
  }

  .hero-overlay h1 {
    font-size: 1.5rem;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }
}
