* {
  box-sizing: border-box;
}
:root {
  --primary: #44355b;
  --lavender: #6c4a7e;
  --accent: #f7c873;
  --text: #2e2e2e;
  --bg: #f8f6f3;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", sans-serif;
}

.navbar-custom {
  background-color: var(--primary);
}

.navbar-custom .nav-link {
  color: #f5f5f5;
  margin-left: 1rem;
  transition: color 0.3s;
}

.navbar-custom .nav-link:hover {
  color: var(--accent);
}

.navbar-brand {
  font-weight: bold;
  color: #fff !important;
}

header.hero {
  background: linear-gradient(120deg, var(--lavender), var(--primary));
  color: white;
  text-align: center;
  padding: 120px 20px 100px;
  position: relative;
  overflow: hidden;
}

header.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

header.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 20px auto 0;
  opacity: 0.95;
}

.btn-accent {
  background-color: var(--accent);
  color: #2e2e2e;
  border: none;
  font-weight: 500;
}

.btn-accent:hover {
  background-color: #f4b842;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

.bg-cream {
  background-color: #fffaf4;
}

.text-accent {
  color: var(--accent);
}
.privacy-section {
  padding: 60px 20px;
}
.privacy-section h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  color: #44355b;
}
.privacy-section a {
  color: #6c4a7e;
}
.privacy-section ul {
  padding-left: 1.2rem;
}
.terms-section {
  padding: 60px 20px;
}
.terms-section h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  color: #44355b;
}
.terms-section a {
  color: #6c4a7e;
}
.terms-section ul {
  padding-left: 1.2rem;
}
.refund-section {
  padding: 60px 20px;
}
.refund-section h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  color: #44355b;
}
.refund-section a {
  color: #6c4a7e;
}
.refund-section ul {
  padding-left: 1.2rem;
}
.optout-section {
  padding: 60px 20px;
}
.optout-section h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  color: #44355b;
}
.optout-section ul {
  padding-left: 1.2rem;
}
.optout-section a {
  color: #6c4a7e;
}
footer a:hover {
  text-decoration: underline !important;
  color: #f7c873 !important;
}
