*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #c9922a;
  --gold-bright: #FBD889;
  --gold-dark: #a67c1a;
  --navy: #1a2744;
  --navy-light: #2e3f5c;
  --burgundy: #8b3a4a;
  --teal: #3d7a7a;
  --cream: #faf6ee;
  --white: #ffffff;
  --bg-base: #faf6ee;
  --bg-warm: #fff5dc;
  --bg-blush: #fdf2f0;
  --bg-mint: #edf7f7;
  --text-primary: #1a2744;
  --text-secondary: #3d4a63;
  --text-muted: #5a6478;
  --text-light: #f5f0e6;
  --text-dark: #1a1a2e;
  --overlay: rgba(250, 246, 238, 0.9);
  --pattern-opacity: 0.14;
  --border-light: rgba(26, 39, 68, 0.12);
  --shadow: rgba(26, 39, 68, 0.1);
  --radius: 8px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-base);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.3;
  color: var(--navy);
}

h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

.pattern-bg {
  background-color: var(--bg-base);
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(201, 146, 42, var(--pattern-opacity)) 20px, rgba(201, 146, 42, var(--pattern-opacity)) 21px),
    repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(201, 146, 42, var(--pattern-opacity)) 20px, rgba(201, 146, 42, var(--pattern-opacity)) 21px);
}

.section-alt {
  background-color: var(--bg-blush);
  background-image:
    radial-gradient(circle at 25% 25%, rgba(201, 146, 42, 0.08) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(201, 146, 42, 0.08) 2px, transparent 2px);
  background-size: 30px 30px;
}

.section-teal {
  position: relative;
  background-color: var(--bg-mint);
  background-image: url("../image/picture8.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.section-teal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 246, 238, 0.72);
  z-index: 0;
}

.section-teal > .container {
  position: relative;
  z-index: 1;
}

.section-gold {
  background-color: var(--gold-bright);
  color: var(--text-dark);
}

.section-gold h2,
.section-gold h3 {
  color: var(--navy);
}

.section-gold a {
  color: var(--burgundy);
}

.section-gold a:hover {
  color: var(--navy);
}

.disclaimer-bar {
  background: var(--bg-warm);
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid var(--gold-bright);
  line-height: 1.5;
}

.disclaimer-ai {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

.disclaimer-ai a {
  color: var(--burgundy);
  text-decoration: underline;
}

.compliance-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding: 0.45rem 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.compliance-business {
  font-weight: 600;
  color: var(--navy);
}

.compliance-links a {
  color: var(--burgundy);
  white-space: nowrap;
}

.header-contact {
  display: none;
  align-items: center;
  gap: 0.35rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: auto;
  margin-right: 1rem;
  white-space: nowrap;
}

.header-contact i {
  color: var(--gold);
}

@media (min-width: 900px) {
  .header-contact {
    display: flex;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--gold-bright);
  box-shadow: 0 2px 12px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1140px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: Georgia, serif;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  color: var(--gold);
  font-weight: bold;
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  border-radius: var(--radius);
  line-height: 1;
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-primary);
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(251, 216, 137, 0.45);
  color: var(--burgundy);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
  max-width: 800px;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.hero-content h1 {
  color: var(--navy);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-ornament {
  width: 120px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto;
  position: relative;
}

.hero-ornament::before,
.hero-ornament::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
}

.hero-ornament::before { left: -15px; }
.hero-ornament::after { right: -15px; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--gold-bright);
  color: var(--navy);
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  font-size: 1rem;
  text-align: center;
}

.btn:hover {
  background: var(--navy);
  color: var(--gold-bright);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold-bright);
  color: var(--navy);
}

section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header .icon-wrap {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.section-gold .section-header .icon-wrap {
  color: var(--navy);
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px var(--shadow);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}

.card .bi {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-gold .card {
  background: rgba(26, 39, 68, 0.08);
  border-color: rgba(26, 39, 68, 0.2);
  color: var(--text-dark);
}

.section-gold .card .bi {
  color: var(--burgundy);
}

.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--gold);
  position: relative;
}

.image-block img {
  width: 100%;
  object-fit: cover;
  min-height: 220px;
}

.image-block::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(251, 216, 137, 0.3);
  pointer-events: none;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: 0 1px 4px var(--shadow);
}

.feature-list .bi {
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.numbered-list {
  counter-reset: item;
}

.numbered-list li {
  counter-increment: item;
  position: relative;
  padding: 1rem 1rem 1rem 3.5rem;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 4px var(--shadow);
  border: 1px solid var(--border-light);
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.calculator-box {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 16px var(--shadow);
}

.calculator-box label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-weight: 600;
}

.calculator-box input[type="time"] {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-base);
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.calculator-results {
  margin-top: 1.5rem;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.result-item .bi {
  font-size: 1.5rem;
  color: var(--gold);
}

.result-item strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 4px var(--shadow);
}

.faq-question {
  display: flex;
  width: 100%;
  text-align: left;
  text-decoration: none;
  background: var(--white);
  color: var(--navy);
  border: none;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-question .bi {
  transition: transform var(--transition);
}

.faq-item.open .faq-question .bi {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
  background: var(--bg-base);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 1rem 1.25rem;
  color: var(--text-secondary);
}

.event-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 1px 4px var(--shadow);
}

.event-date {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 0.5rem;
  font-weight: bold;
}

.event-date .day {
  font-size: 1.5rem;
  line-height: 1;
}

.event-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.guideline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.guideline-item {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 4px var(--shadow);
  border: 1px solid var(--border-light);
}

.guideline-item .bi {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.checkbox-group {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.35rem;
}

.checkbox-group label {
  font-weight: normal;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--gold);
}

.map-wrap iframe {
  width: 100%;
  height: 350px;
  display: block;
}

.contact-info-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 4px var(--shadow);
}

.contact-info-list .bi {
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.site-footer {
  background: var(--bg-warm);
  border-top: 3px solid var(--gold-bright);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-grid p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--burgundy);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  color: var(--burgundy);
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.policy-content p,
.policy-content li {
  color: var(--text-secondary);
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 3px solid var(--gold-bright);
  padding: 1.25rem;
  box-shadow: 0 -4px 20px var(--shadow);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.cookie-inner p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cookie-banner-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.cookie-category-summary {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.cookie-category-summary li {
  margin-bottom: 0.35rem;
}

.cookie-settings-intro {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.cookie-toggle-text {
  flex: 1;
  padding-right: 1rem;
}

.cookie-toggle-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  line-height: 1.4;
}

.cookie-banner-footnote {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.cookie-banner-footnote a {
  color: var(--burgundy);
}

.btn-cookie-equal {
  min-width: 8.5rem;
  text-align: center;
}

.cookie-buttons .btn-outline {
  border-width: 2px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-buttons .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.cookie-settings.open {
  display: block;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.cookie-toggle label {
  color: var(--text-primary);
  font-size: 0.9rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0.15);
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px var(--shadow);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--gold-bright);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.breadcrumb a {
  color: var(--burgundy);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  min-width: 120px;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 4px var(--shadow);
}

.stat-item .number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold);
  font-family: Georgia, serif;
}

.stat-item .label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.quote-block {
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  margin: 1.5rem 0;
  box-shadow: 0 1px 4px var(--shadow);
}

.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 4px var(--shadow);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 1.25rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--white);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--gold-bright);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    box-shadow: 0 4px 12px var(--shadow);
  }

  .main-nav.open {
    max-height: 500px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
  }

  .grid-2,
  .grid-3,
  .footer-grid,
  .guideline-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 2.5rem 0;
  }

  .hero {
    min-height: 80vh;
  }

  .stats-row {
    gap: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .header-inner {
    padding: 0.5rem;
  }

  .logo-link img {
    height: 32px;
  }

  .logo-text {
    font-size: 0.7rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }

  .calculator-box {
    padding: 1.25rem;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }
}

.resource-list {
  margin: 1.25rem 0;
}

.resource-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.resource-list li i {
  color: var(--teal);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.trust-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 1rem 1.25rem;
  background: var(--bg-mint);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
}

.trust-note i {
  color: var(--teal);
  margin-right: 0.35rem;
}

.footer-legal-note {
  font-size: 0.875rem;
  color: rgba(245, 240, 230, 0.85);
  margin-top: 0.5rem;
}

.footer-legal-note a {
  color: var(--gold-bright);
}

.calc-disclaimer {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.calc-disclaimer i {
  color: var(--teal);
  margin-right: 0.25rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.about-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.about-box > i {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.about-box ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.about-box li {
  margin-bottom: 0.35rem;
  color: var(--text-secondary);
}
