:root {
  --primary-color: #5d4037;
  --primary-dark: #3e2723;
  --primary-light: #8d6e63;
  --text-dark: #212529;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --success: #28a745;
}

* {
  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;
  background-color: var(--white);
}

.navbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(93, 64, 55, 0.85) 0%, rgba(93, 64, 55, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content .lead {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.disclaimer-hero {
  font-size: 0.95rem;
  opacity: 0.9;
  font-style: italic;
}

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

.content-section h3 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

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

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

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

.bg-info-light {
  background-color: #e7f3f8;
}

.alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info h3 {
  color: var(--primary-dark);
  font-size: 1.5rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: var(--white);
}

.footer {
  margin-top: 0;
}

.footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer a:hover {
  opacity: 0.8;
}

.page-header {
  padding: 3rem 0;
}

.page-header h1 {
  color: var(--primary-color);
  font-weight: 700;
}

.contact-info {
  border-left: 4px solid var(--primary-color);
}

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

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

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

.success-message .success-icon {
  display: inline-block;
}

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

  .hero-content .lead {
    font-size: 1.2rem;
  }

  .hero-section {
    height: 60vh;
    min-height: 400px;
  }
}

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

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