:root {
  --primary-color: #d2b48c;
  --primary-dark: #b89968;
  --text-dark: #2c3e50;
  --text-light: #5d6d7e;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

* {
  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(--bg-white);
}

.main-header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-white);
}

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

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

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

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

.hero-section {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(210, 180, 140, 0.85) 0%, rgba(184, 153, 104, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.content-section {
  background-color: var(--bg-white);
}

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

h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.custom-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
}

.custom-list li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0.5rem;
}

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

.cta-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 3rem;
  border-radius: 16px;
  color: var(--bg-white);
}

.btn-custom {
  background-color: var(--bg-white);
  color: var(--primary-color);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.thank-you-box {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: 16px;
  margin: 3rem 0;
}

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

.main-footer h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.main-footer p {
  color: #bdc3c7;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1rem 0;
  z-index: 10000;
  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;
}

.contact-info h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(210, 180, 140, 0.25);
}

.table thead th {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
}

.table-bordered {
  border: 1px solid var(--border-color);
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffe69c;
  color: #856404;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
  }

  .hero-image-wrapper {
    height: 400px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .page-header {
    padding: 60px 0;
  }

  .cta-box,
  .thank-you-box {
    padding: 2rem;
  }
}
