.elementor-7280 .elementor-element.elementor-element-8e88b95{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-7280 .elementor-element.elementor-element-8e88b95{--content-width:1281px;}}/* Start custom CSS for container, class: .elementor-element-8e88b95 */:root {
  --bg: #f4efe6;
  --panel: #f7f2ea;
  --text: #3c2f27;
  --muted: #6b5a4c;
  --accent: #a45a2a;
  --accent-dark: #7c3f1d;
  --gold: #c59a5a;
  --card: #ffffff;
  --shadow: 0 14px 35px rgba(25, 17, 10, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(247, 242, 234, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(60, 47, 39, 0.08);
}

.logo-mark {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: rgba(164, 90, 42, 0.1);
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: rgba(164, 90, 42, 0.35);
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 48px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(247, 242, 234, 0.95), rgba(255, 255, 255, 0.9));
  border-radius: 20px;
  border: 1px solid rgba(60, 47, 39, 0.08);
  box-shadow: var(--shadow);
}

.hero-content h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  margin: 8px 0 12px;
  color: var(--accent-dark);
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  background: rgba(197, 154, 90, 0.18);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.hero-points li {
  padding-left: 20px;
  position: relative;
}

.hero-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cover-frame {
  background: #fff;
  padding: 12px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(60, 47, 39, 0.05);
}

.seal {
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
}

.section {
  background: var(--card);
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(60, 47, 39, 0.06);
  box-shadow: 0 10px 28px rgba(25, 17, 10, 0.08);
}

.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 12px;
  color: var(--accent-dark);
}

.section h3 {
  margin-top: 0;
  color: var(--accent);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.highlight-box {
  background: var(--panel);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(164, 90, 42, 0.12);
}

.accent {
  color: var(--accent);
  font-weight: 700;
}

.bullet-list {
  padding-left: 20px;
  margin: 14px 0 0;
  color: var(--text);
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.card {
  background: var(--panel);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(60, 47, 39, 0.06);
}

.panel {
  background: var(--panel);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(60, 47, 39, 0.06);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 26px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.testimonial {
  text-align: center;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
}

.quote-source {
  color: var(--text);
  font-weight: 700;
}

.fact-list {
  display: grid;
  gap: 10px;
  background: var(--panel);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(60, 47, 39, 0.06);
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(60, 47, 39, 0.08);
}

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

.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, rgba(164, 90, 42, 0.12), rgba(247, 242, 234, 0.9));
  border-radius: 18px 18px 0 0;
  border-top: 1px solid rgba(60, 47, 39, 0.1);
}

@media (max-width: 960px) {
  .topbar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero,
  .two-col {
    grid-template-columns: 1fr;
  }

  main {
    padding: 32px 16px 64px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}/* End custom CSS */