:root {
  --color-primary: #fffaf0;
  --color-secondary: #fdf6e3;
  --color-text: #2c2c2c;
  --color-text-light: #666666;
  --color-accent: #d4af37;
  --color-border: #e8e8e8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  min-height: 100vh;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--color-accent);
  opacity: 0.8;
}

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

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

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.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(255,250,240,0.9) 0%, rgba(253,246,227,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.2rem;
  color: var(--color-text-light);
  max-width: 600px;
}

.content-section {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.content-section h1,
.content-section h2,
.content-section h3 {
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.content-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  border-bottom: 3px solid var(--color-accent);
  padding-bottom: 1rem;
}

.content-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2rem;
}

.content-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

.content-section p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.content-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.table {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.table thead {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.table thead th {
  color: var(--color-text);
  font-weight: 600;
  border: none;
  padding: 1rem;
}

.table tbody td {
  padding: 1rem;
  border-color: var(--color-border);
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  padding: 2rem;
  margin: 3rem 0;
}

.disclaimer-box h3 {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

.cta-section {
  text-align: center;
  padding: 3rem 0;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent) 0%, #c99e2d 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: white;
  text-decoration: none;
}

.footer {
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

.footer p,
.footer a {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-light);
  font-size: 0.9rem;
}

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

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #c99e2d 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 44, 44, 0.98);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

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

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

.cookie-banner button {
  background: var(--color-accent);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.cookie-banner button:hover {
  opacity: 0.9;
}

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

  .hero-overlay p {
    font-size: 1rem;
  }

  .content-section {
    padding: 1.5rem;
  }

  .content-section h1 {
    font-size: 1.8rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .content-section h3 {
    font-size: 1.2rem;
  }

  .hero-section {
    height: 350px;
  }
}
