:root {
  --primary-color: #f4c430;
  --primary-dark: #d4a915;
  --text-dark: #2c2c2c;
  --text-light: #5a5a5a;
  --bg-light: #faf9f6;
  --bg-white: #ffffff;
  --border-color: #e5e5e5;
  --shadow: rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px var(--shadow);
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

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

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 196, 48, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--text-dark);
}

.btn-nav {
  padding: 0.5rem 1.25rem;
  margin-left: 1rem;
}

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

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

main {
  margin-top: 80px;
}

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #faf9f6 0%, #fff9e6 100%);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

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

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

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.rounded-lg {
  border-radius: 12px;
}

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

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

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

.faq-answer {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0;
}

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

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

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

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

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

.contact-item {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--text-light);
}

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

.contact-item a:hover {
  color: var(--primary-color);
}

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

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

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

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

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

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: 0 -2px 10px var(--shadow);
  padding: 1.5rem 0;
  z-index: 1001;
  display: none;
}

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

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

.policy-page {
  padding: 4rem 0;
  min-height: calc(100vh - 400px);
}

.policy-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.policy-date {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

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

.policy-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.policy-section p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.thank-you-page {
  padding: 4rem 0;
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
}

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

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

.thank-you-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .navbar-collapse {
    background-color: var(--bg-white);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }

  .btn-nav {
    margin-left: 0;
    margin-top: 1rem;
    display: block;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 2rem 0;
  }

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

  .hero-title {
    font-size: 1.75rem;
  }

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

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