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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, #1a1208 0%, #0d0906 100%);
  color: #e8dcc8;
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: #f5c542;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ffd966;
  text-shadow: 0 0 10px rgba(245, 197, 66, 0.4);
}

p a {
  border-bottom: 1px solid rgba(245, 197, 66, 0.3);
}

p a:hover {
  border-bottom-color: #ffd966;
}

/* Header */
header {
  background: linear-gradient(180deg, #2a1f10 0%, #1a1208 100%);
  border-bottom: 2px solid #8b6914;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.header-nav a {
  color: #e8dcc8;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: #f5c542;
  border-bottom-color: #f5c542;
  text-shadow: none;
}

.header-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #f5c542;
  border: 1px solid #8b6914;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 1.1rem;
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(180deg, #f5c542 0%, #c9a227 100%);
  color: #1a1208;
  box-shadow: 0 4px 15px rgba(245, 197, 66, 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(245, 197, 66, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(245, 197, 66, 0.6);
  }
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ffd966 0%, #d4af37 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(245, 197, 66, 0.7);
  color: #1a1208;
  animation: none;
}

.btn-secondary,
.btn-login {
  background: transparent;
  color: #f5c542;
  border: 2px solid #f5c542;
  transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-login:hover {
  background: rgba(245, 197, 66, 0.15);
  color: #ffd966;
  border-color: #ffd966;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 197, 66, 0.2);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 18px 0 0;
}

.breadcrumbs-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.85rem;
  color: #8b7355;
  padding: 0;
  margin: 0;
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.breadcrumbs-list a {
  color: #c9a227;
  border-bottom: none;
}

.breadcrumbs-list a:hover {
  color: #ffd966;
}

.breadcrumbs-list span[aria-current='page'] {
  color: #e8dcc8;
}

.breadcrumbs-sep {
  color: #8b6914;
}

/* Main Content */
.main-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Page hero (generic for inner pages) */
.page-hero {
  padding: 60px 20px 40px;
  text-align: center;
  background: linear-gradient(135deg, #2a1f10 0%, #1a1208 100%);
  border-bottom: 1px solid rgba(139, 105, 20, 0.4);
}

.page-hero h1 {
  font-size: 2.4rem;
  color: #f5c542;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(245, 197, 66, 0.5), 0 0 30px rgba(245, 197, 66, 0.2);
}

.page-hero .lede {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #d4c4a8;
}

/* Hero Wrapper with background image */
.hero-wrapper {
  background: url('/img/hero-bg.png');
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 50px 30px;
  background: rgba(26, 18, 8, 0.92);
  border-radius: 15px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(139, 105, 20, 0.3);
}

.hero h1 {
  font-size: 2.5rem;
  color: #f5c542;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(245, 197, 66, 0.5), 0 0 30px rgba(245, 197, 66, 0.2);
}

.hero-text {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #d4c4a8;
}

/* Content Sections */
h2 {
  font-size: 1.8rem;
  color: #f5c542;
  margin: 50px 0 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #8b6914;
  text-shadow: 0 2px 8px rgba(245, 197, 66, 0.3);
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #f5c542 0%, transparent 100%);
}

h2 i {
  margin-right: 12px;
  color: #f5c542;
}

h3 {
  font-size: 1.4rem;
  color: #e8b923;
  margin: 35px 0 20px;
  text-shadow: 0 1px 4px rgba(232, 185, 35, 0.3);
}

h4 {
  font-size: 1.1rem;
  color: #d4af37;
  margin: 25px 0 15px;
  text-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
}

p {
  margin-bottom: 20px;
  color: #d4c4a8;
}

strong {
  color: #f5c542;
  font-weight: 600;
}

/* Section dividers with gold accent */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #f5c542 50%, transparent 100%);
  margin: 60px 0;
  position: relative;
}

.section-divider::after {
  content: '◆';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #f5c542;
  background: #1a1208;
  padding: 0 15px;
  font-size: 12px;
}

/* Badge */
.badge {
  display: inline-block;
  background: linear-gradient(135deg, #f5c542 0%, #c9a227 100%);
  color: #1a1208;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: bold;
  margin: 0 5px;
  box-shadow: 0 2px 8px rgba(245, 197, 66, 0.3);
}

.key-number {
  color: #f5c542;
  font-size: 1.3em;
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(245, 197, 66, 0.4);
}

/* Tables */
.table-container {
  overflow-x: auto;
  margin: 25px 0;
  border-radius: 10px;
  border: 1px solid #8b6914;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(42, 31, 16, 0.8);
}

th {
  background: linear-gradient(180deg, #3d2e14 0%, #2a1f10 100%);
  color: #f5c542;
  padding: 15px;
  text-align: left;
  font-weight: bold;
  border-bottom: 2px solid #8b6914;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

td {
  padding: 12px 15px;
  border-bottom: 1px solid #3d2e14;
  color: #d4c4a8;
}

tr:nth-child(even) {
  background: rgba(139, 105, 20, 0.08);
}

tr:hover {
  background: rgba(139, 105, 20, 0.15);
  transition: background 0.3s ease;
}

td strong {
  display: inline-block;
  background: rgba(245, 197, 66, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.95em;
}

/* Lists */
ul, ol {
  margin: 20px 0;
  padding-left: 25px;
}

li {
  margin-bottom: 10px;
  color: #d4c4a8;
}

/* Promo Card */
.promo-card {
  background: linear-gradient(180deg, #2a1f10 0%, #1a1208 100%);
  border: 1px solid #8b6914;
  border-radius: 15px;
  overflow: hidden;
  margin: 30px 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
  text-decoration: none;
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(245, 197, 66, 0.3);
}

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-card-content {
  padding: 25px;
}

.promo-card h3 {
  margin-top: 0;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #3d2e14 0%, #2a1f10 100%);
  border: 2px solid #f5c542;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 8px 30px rgba(245, 197, 66, 0.2), inset 0 1px 0 rgba(245, 197, 66, 0.1);
  position: relative;
}

.cta-box h3 {
  color: #f5c542;
  margin-top: 0;
  font-size: 1.6rem;
  text-shadow: 0 2px 8px rgba(245, 197, 66, 0.3);
}

.cta-box p {
  margin-bottom: 24px;
}

/* Info Box */
.info-box {
  background: rgba(139, 105, 20, 0.15);
  border-left: 4px solid #f5c542;
  padding: 20px 25px 20px 55px;
  margin: 25px 0;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.info-box::before {
  content: '\f05a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #f5c542;
  font-size: 1.3rem;
}

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.pros, .cons {
  background: rgba(42, 31, 16, 0.8);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid #8b6914;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.pros:hover, .cons:hover {
  transform: translateY(-3px);
}

.pros h4 {
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pros h4::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.2rem;
}

.cons h4 {
  color: #f87171;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cons h4::before {
  content: '\f057';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.2rem;
}

.pros ul, .cons ul {
  list-style: none;
  padding-left: 0;
}

.pros li, .cons li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.pros li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #4ade80;
  font-size: 0.9rem;
}

.cons li::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #f87171;
  font-size: 0.9rem;
}

/* Rating Box */
.rating-box {
  background: linear-gradient(135deg, #3d2e14 0%, #2a1f10 100%);
  border: 2px solid #8b6914;
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.rating-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #3d2e14;
  position: relative;
}

.rating-item:last-child {
  border-bottom: none;
}

.rating-score {
  color: #f5c542;
  font-weight: bold;
  font-size: 1.3rem;
  text-shadow: 0 2px 8px rgba(245, 197, 66, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-score::before {
  content: '\f005';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1rem;
  color: #f5c542;
}

/* FAQ */
.faq-item {
  background: rgba(42, 31, 16, 0.6);
  border: 1px solid #3d2e14;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #8b6914;
  box-shadow: 0 5px 15px rgba(245, 197, 66, 0.15);
}

.faq-question {
  padding: 20px 20px 20px 55px;
  color: #f5c542;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question::before {
  content: '\f059';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 20px;
  color: #f5c542;
  font-size: 1.2rem;
}

.faq-question:hover {
  color: #ffd966;
}

.faq-answer {
  padding: 0 20px 20px 55px;
  color: #d4c4a8;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.image-grid a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #8b6914;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.image-grid a:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 8px 25px rgba(245, 197, 66, 0.4);
  border-color: #f5c542;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
}

/* Review Quote (testimonial) */
.review-quote {
  background: rgba(42, 31, 16, 0.6);
  border-left: 4px solid #f5c542;
  border-radius: 0 10px 10px 0;
  padding: 20px 25px;
  margin: 25px 0;
  font-style: italic;
  color: #e8dcc8;
}

.review-quote .review-meta {
  font-style: normal;
  display: block;
  margin-top: 12px;
  color: #c9a227;
  font-size: 0.9rem;
}

/* Author Box */
.author-section {
  padding: 40px 0;
}

.author-card {
  display: flex;
  gap: 25px;
  background: linear-gradient(135deg, #3d2e14 0%, #2a1f10 100%);
  border: 2px solid #8b6914;
  border-radius: 15px;
  padding: 30px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.author-photo {
  flex-shrink: 0;
}

.author-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f5c542;
  display: block;
}

.author-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px 0;
}

.author-name a {
  color: #fff;
  border-bottom: none;
}

.author-name a:hover {
  color: #f5c542;
}

.author-title {
  display: block;
  color: #f5c542;
  font-size: 0.95rem;
  margin: 0 0 15px 0;
}

.author-bio {
  color: #c4b89a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .author-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* Footer */
footer {
  background: linear-gradient(180deg, #1a1208 0%, #0d0906 100%);
  border-top: 2px solid #8b6914;
  padding: 40px 20px;
  margin-top: 60px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.footer-nav li {
  margin: 0;
}

.footer-nav a {
  color: #c9a227;
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: #ffd966;
}

.authority-section {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(139, 105, 20, 0.3);
  border-bottom: 1px solid rgba(139, 105, 20, 0.3);
  margin-bottom: 24px;
}

.authority-section h3 {
  margin: 0 0 18px;
  color: #c9a227;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.authority-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
}

.authority-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #8b7355;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.authority-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.authority-logo:hover img {
  opacity: 1;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  color: #8b7355;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-style: italic;
  padding: 16px 20px;
  background: rgba(139, 105, 20, 0.08);
  border-radius: 10px;
  margin-top: 20px;
  line-height: 1.6;
}

/* Horizontal rule */
hr {
  border: none;
  border-top: 1px solid #3d2e14;
  margin: 40px 0;
}

/* Responsive */
@media (max-width: 900px) {
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #2a1f10 0%, #1a1208 100%);
    border-bottom: 2px solid #8b6914;
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    display: none;
  }
  .header-nav.mobile-open {
    display: flex;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .hero h1, .page-hero h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  .cta-box {
    padding: 25px;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .header-buttons .btn-login {
    display: none;
  }
}
