:root {
  --primary-yellow: #f4c542;
  --primary-yellow-dark: #e0b02f;
  --text-dark: #2d2d2d;
  --text-muted: #6c757d;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
}

* {
  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);
  background-color: var(--bg-white);
  line-height: 1.6;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-yellow-dark);
  text-decoration: none;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 2px solid var(--primary-yellow);
  box-shadow: var(--shadow-md);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 0;
  color: var(--text-dark);
}

.cookie-banner a {
  color: var(--primary-yellow-dark);
  text-decoration: underline;
}

.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

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

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

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

.btn-primary {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-yellow-dark);
  border-color: var(--primary-yellow-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--bg-light);
  border-color: var(--border-color);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fef9e7 0%, #fef5d9 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

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

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-content .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.page-header {
  background: linear-gradient(135deg, #fef9e7 0%, #fef5d9 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

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

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

.content-section h2 {
  margin-bottom: 2rem;
}

.content-section h3 {
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.image-card,
.topic-card,
.info-card {
  height: 100%;
}

.image-card img,
.topic-card img,
.info-card img {
  border-radius: 12px;
}

.topic-card,
.info-card {
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.format-details {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 12px;
  border-left: 4px solid var(--primary-yellow);
}

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

.disclaimer-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

.faq-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.faq-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

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

.faq-item p {
  margin-bottom: 0;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fef9e7 0%, #fef5d9 100%);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

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

.contact-details {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

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

.contact-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-item p {
  margin-bottom: 0;
}

.contact-info {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.thank-you-section {
  padding: 6rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.site-footer {
  background: var(--text-dark);
  color: var(--bg-light);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.site-footer h3 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.site-footer p {
  color: var(--bg-light);
  font-size: 0.95rem;
}

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

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

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

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-content .lead {
    font-size: 1.25rem;
  }

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content .lead {
    font-size: 1.125rem;
  }

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

  .btn-primary,
  .btn-secondary {
    padding: 0.65rem 1.5rem;
  }

  .cookie-banner .btn {
    margin-top: 1rem;
    width: 100%;
  }
}
