:root {
  --deep-teal: #006666;
  --light-teal: #008080;
  --dark-teal: #004d4d;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --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.7;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-teal);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--light-teal);
  text-decoration: none;
}

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

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

.hero-section {
  margin-top: 76px;
  background-color: var(--bg-light);
  padding: 4rem 0;
}

.hero-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.hero-section h1 {
  color: var(--deep-teal);
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.125rem;
  color: var(--text-light);
}

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

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

.content-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.content-section h2 {
  color: var(--deep-teal);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  color: var(--dark-teal);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

.content-section li {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.btn-primary {
  background-color: var(--deep-teal);
  border-color: var(--deep-teal);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s;
}

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

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

.disclaimer-box p {
  margin-bottom: 0;
  color: #856404;
  font-weight: 500;
}

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

.faq-item h3 {
  color: var(--deep-teal);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text-dark);
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

footer p, footer a {
  color: #bdc3c7;
  font-size: 0.9rem;
  line-height: 1.8;
}

footer a {
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

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

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

.footer-bottom {
  border-top: 1px solid #34495e;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner p {
  margin-bottom: 1rem;
  color: var(--white);
}

.cookie-banner .btn {
  margin-right: 0.5rem;
}

.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-control:focus {
  border-color: var(--deep-teal);
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 102, 0.25);
}

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

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