:root {
  --primary-color: #e8915a;
  --primary-hover: #d4803d;
  --text-dark: #2d2d2d;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.nav-link {
  color: var(--text-dark) !important;
  transition: color 0.2s ease;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
  padding: 4rem 0;
}

@media (min-width: 992px) {
  .hero-section {
    padding: 6rem 0;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #c06f2e 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 145, 90, 0.3);
}

.btn-outline-secondary {
  border-color: var(--border-color);
  color: var(--text-dark);
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
}

.btn-outline-secondary:hover {
  background-color: var(--bg-light);
  border-color: var(--text-muted);
  color: var(--text-dark);
}

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

.section-title {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card-body {
  padding: 1.5rem;
}

img.rounded {
  border-radius: 0.75rem !important;
}

.shadow {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.footer {
  margin-top: auto;
}

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

.footer a:hover {
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  padding: 1rem 0;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  display: none;
}

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

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(232, 145, 90, 0.15);
}

.alert-secondary {
  background-color: var(--bg-light);
  border-color: var(--border-color);
  color: var(--text-dark);
  border-radius: 0.75rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
}

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

.text-muted {
  color: var(--text-muted) !important;
}

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0;
  }

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

  h1 {
    font-size: 1.75rem;
  }

  .display-4 {
    font-size: 2rem;
  }
}
