* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #008b8b;
}

.navbar {
  padding: 1rem 0;
}

.navbar-light .navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #008b8b;
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-section .lead {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.page-header {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.content-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.content-section ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.content-section li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, #008b8b 0%, #006666 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #006666 0%, #004d4d 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 139, 139, 0.3);
}

.disclaimer-box {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f7f7 100%);
  border-left: 4px solid #008b8b;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: #008b8b;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

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

.disclaimer-box ul {
  margin-bottom: 0;
}

.contact-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
}

.contact-card h3 {
  font-size: 1.3rem;
  color: #008b8b;
  margin-bottom: 1rem;
}

.thank-you-box {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f7f7 100%);
  padding: 3rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.thank-you-box h1 {
  color: #008b8b;
  margin-bottom: 1.5rem;
}

.form-control {
  padding: 0.75rem;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #008b8b;
  box-shadow: 0 0 0 0.2rem rgba(0, 139, 139, 0.1);
}

.footer {
  background: #222;
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: #008b8b;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer p {
  color: #ccc;
  font-size: 0.95rem;
}

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

.footer a:hover {
  color: #008b8b;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(34, 34, 34, 0.98);
  color: #fff;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner p {
  color: #fff;
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner.hidden {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

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

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

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

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

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

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

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

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