:root {
  --primary-teal: #14b8a6;
  --teal-dark: #0d9488;
  --teal-light: #5eead4;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
}

h2 {
  font-size: 2rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-teal);
}

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

.nav-link {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

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

main {
  margin-top: 76px;
}

.hero-section {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  padding: 80px 0;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-block {
  padding: 60px 0;
}

.section-block:nth-child(even) {
  background-color: var(--bg-light);
}

.section-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

.btn-teal {
  background-color: var(--primary-teal);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-teal:hover {
  background-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.btn-outline-teal {
  border: 2px solid var(--primary-teal);
  color: var(--primary-teal);
  background: transparent;
  padding: 12px 32px;
  border-radius: 6px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline-teal:hover {
  background-color: var(--primary-teal);
  color: var(--white);
  transform: translateY(-2px);
}

.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}

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

.card-header {
  background-color: var(--primary-teal);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
}

.disclaimer-box {
  background-color: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
}

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

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  color: var(--primary-teal);
  margin-bottom: 0.5rem;
}

footer {
  background-color: #1f2937;
  color: #d1d5db;
  padding: 40px 0 20px;
  margin-top: 60px;
}

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

footer a {
  color: #d1d5db;
  display: block;
  margin-bottom: 0.5rem;
}

footer a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
}

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

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

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25);
}

.list-styled {
  list-style: none;
  padding-left: 0;
}

.list-styled li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.list-styled li:before {
  content: "→";
  color: var(--primary-teal);
  font-weight: bold;
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-image {
    height: 300px;
  }
  
  .section-image {
    height: 250px;
  }
  
  .section-block {
    padding: 40px 0;
  }
}
