:root {
  --gradient-gold: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  --color-primary: #f6d365;
  --color-secondary: #fda085;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-light: #f9f9f9;
  --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(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-text);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

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

.navbar {
  background-color: var(--color-bg);
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--color-text) !important;
  font-weight: 500;
  margin-left: 1.5rem;
}

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.content-block {
  background-color: var(--color-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.content-block h2, .content-block h3 {
  color: var(--color-text);
}

.image-wrapper {
  margin: 2rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: auto;
}

.table-responsive {
  margin: 2rem 0;
}

.table {
  background-color: var(--color-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.table th {
  background: var(--gradient-gold);
  color: var(--color-text);
  font-weight: 600;
  border: none;
}

.table td {
  border-color: #e0e0e0;
}

.cta-box {
  background: var(--gradient-gold);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 3rem 0;
}

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

.btn-custom {
  background: var(--color-bg);
  color: var(--color-text);
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

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

.faq-item {
  margin-bottom: 2rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.footer {
  background-color: var(--color-bg-light);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid #e0e0e0;
}

.footer h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.footer a {
  color: var(--color-text-light);
  transition: color 0.3s ease;
}

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

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

.contact-info {
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(246, 211, 101, 0.25);
}

.btn-primary {
  background: var(--gradient-gold);
  border: none;
  color: var(--color-text);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--border-radius);
}

.btn-primary:hover {
  opacity: 0.9;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  border-top: 3px solid var(--color-primary);
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-text p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.thank-you-section {
  text-align: center;
  padding: 5rem 2rem;
}

.thank-you-section h1 {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

  .hero-section {
    height: 400px;
  }

  .section-padding {
    padding: 2rem 0;
  }

  .content-block {
    padding: 1.5rem;
  }

  .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}
