:root {
  --primary-color: #c59b76;
  --primary-dark: #a67c59;
  --secondary-color: #2c3e50;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --border-radius: 8px;
}

* {
  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;
  overflow-x: hidden;
}

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

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-section h1 {
  color: var(--text-dark);
  font-weight: 700;
}

.hero-section .lead {
  color: var(--text-muted);
}

.page-header {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.section-title {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  font-weight: 500;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 155, 118, 0.3);
}

.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  height: 200px;
  object-fit: cover;
}

.term-card {
  padding: 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.disclaimer-box {
  background: #fff8f0;
  border-left: 4px solid var(--primary-color);
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 30px 0;
}

.contact-info-box {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.cta-section h2 {
  color: white;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

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

.cta-section .btn-primary:hover {
  background-color: #f8f9fa;
  color: var(--primary-dark);
  border-color: #f8f9fa;
}

.footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer h3 {
  color: white;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer .list-unstyled li {
  margin-bottom: 8px;
}

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

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

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

.form-control {
  border-radius: var(--border-radius);
  border: 1px solid #ddd;
  padding: 12px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(197, 155, 118, 0.25);
}

.alert {
  border-radius: var(--border-radius);
  border: none;
}

img {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: var(--border-radius) !important;
}

.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .content-section {
    padding: 40px 0;
  }

  .cta-section {
    padding: 50px 0;
  }

  .footer {
    padding: 40px 0 20px;
  }
}
