/* ========================================
   SACRED ATLANTEAN BROTHERHOOD
   Global Styles
   ======================================== */

/* --- Custom Properties --- */
:root {
  --ocean: #0A1128;
  --ocean-light: #121d42;
  --ocean-lighter: #1a2855;
  --gold: #C5A059;
  --gold-light: #d4b474;
  --gold-dark: #a88540;
  --amethyst: #5A3A7A;
  --amethyst-light: #7a5a9a;
  --kyanite: #2C5F6B;
  --kyanite-light: #3a7a8a;
  --parchment: #F4EDE4;
  --parchment-dark: #d4cdc4;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lora', serif;
  background-color: var(--ocean);
  color: var(--parchment);
  line-height: 1.7;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at 15% 50%, rgba(90, 58, 122, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 20%, rgba(44, 95, 107, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 90%, rgba(197, 160, 89, 0.04) 0%, transparent 60%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  line-height: 1.3;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(197, 160, 89, 0.4);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--ocean);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* --- Header --- */
.site-header {
  background: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 17, 40, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.3));
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.logo-text-sub {
  font-size: 0.6rem;
  color: var(--parchment-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--parchment-dark);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(197, 160, 89, 0.08);
  text-shadow: 0 0 8px rgba(197, 160, 89, 0.3);
}

/* --- Mobile Menu --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 17, 40, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--parchment);
  padding: 0.75rem 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
  text-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* --- Hero Sections --- */
.hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center bottom, rgba(90, 58, 122, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse at center top, rgba(44, 95, 107, 0.1) 0%, transparent 60%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A059' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-quote {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--parchment);
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.hero-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-style: normal;
}

.hero-sub {
  font-family: 'Lora', serif;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: var(--parchment-dark);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* --- Buttons --- */
.btn-gold {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocean);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.25);
  position: relative;
  z-index: 1;
}

.btn-gold:hover {
  color: var(--ocean);
  background: linear-gradient(135deg, var(--gold-light), #e8cc95);
  box-shadow: 0 6px 30px rgba(197, 160, 89, 0.45);
  transform: translateY(-2px);
  text-shadow: none;
}

.btn-outline {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 0.75rem 2rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.btn-outline:hover {
  color: var(--ocean);
  background: var(--gold);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.35);
  transform: translateY(-2px);
  text-shadow: none;
}

/* --- Decorative Divider --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem auto;
  max-width: 300px;
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.divider-symbol {
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0.7;
}

/* --- Section Styles --- */
.section {
  padding: 4rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--parchment-dark);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* --- Cards --- */
.card {
  background: rgba(18, 29, 66, 0.6);
  border: 1px solid rgba(197, 160, 89, 0.12);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  border-color: rgba(197, 160, 89, 0.3);
  background: rgba(18, 29, 66, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(197, 160, 89, 0.08);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--gold);
  border: 1px solid rgba(197, 160, 89, 0.3);
  background: rgba(197, 160, 89, 0.08);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--parchment-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Degree Cards --- */
.degree-card {
  background: rgba(18, 29, 66, 0.5);
  border: 1px solid rgba(197, 160, 89, 0.1);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.degree-card:hover {
  border-color: rgba(197, 160, 89, 0.25);
  background: rgba(18, 29, 66, 0.7);
}

.degree-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.degree-card .degree-number {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.degree-card .degree-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
}

.degree-card .degree-desc {
  color: var(--parchment-dark);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* --- Path Section --- */
.path-header {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  position: relative;
}

.path-header.initiate {
  background: linear-gradient(135deg, rgba(44, 95, 107, 0.15), rgba(197, 160, 89, 0.08));
  border: 1px solid rgba(44, 95, 107, 0.2);
}

.path-header.navigator {
  background: linear-gradient(135deg, rgba(90, 58, 122, 0.15), rgba(197, 160, 89, 0.08));
  border: 1px solid rgba(90, 58, 122, 0.2);
}

.path-header.captain {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(90, 58, 122, 0.1));
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.path-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.path-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment-dark);
  margin-bottom: 0.5rem;
}

/* --- Video Container --- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(197, 160, 89, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- FAQ --- */
.faq-item {
  background: rgba(18, 29, 66, 0.4);
  border: 1px solid rgba(197, 160, 89, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(197, 160, 89, 0.25);
}

.faq-question {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: var(--gold);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(197, 160, 89, 0.05);
}

.faq-question .faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--parchment-dark);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  padding: 0 1.5rem 1.25rem;
  max-height: 300px;
}

/* --- Social Grid --- */
.social-card {
  background: rgba(18, 29, 66, 0.5);
  border: 1px solid rgba(197, 160, 89, 0.1);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.social-card:hover {
  border-color: rgba(197, 160, 89, 0.4);
  background: rgba(18, 29, 66, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(197, 160, 89, 0.1);
  text-shadow: none;
}

.social-card .social-icon {
  font-size: 2rem;
  color: var(--gold);
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-card:hover .social-icon {
  transform: scale(1.1);
}

.social-card h3 {
  font-size: 1rem;
  color: var(--gold);
}

.social-card p {
  font-size: 0.85rem;
  color: var(--parchment-dark);
  line-height: 1.6;
}

.social-card .social-handle {
  font-size: 0.8rem;
  color: var(--kyanite-light);
  font-family: 'Cinzel', serif;
}

/* --- Footer --- */
.site-footer {
  background: rgba(6, 10, 28, 0.95);
  border-top: 1px solid rgba(197, 160, 89, 0.1);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.2);
  color: var(--gold);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(197, 160, 89, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
  transform: translateY(-2px);
}

.footer-copyright {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(244, 237, 228, 0.4);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.08);
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(197, 160, 89, 0.25); }
  50% { box-shadow: 0 4px 30px rgba(197, 160, 89, 0.5); }
}

.btn-gold.pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* --- Grid Helpers --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* --- Benefit levels --- */
.benefit-level {
  background: rgba(18, 29, 66, 0.5);
  border: 1px solid rgba(197, 160, 89, 0.1);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.benefit-level::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.benefit-level.initiate::after {
  background: linear-gradient(to right, var(--kyanite), transparent);
}

.benefit-level.navigator::after {
  background: linear-gradient(to right, var(--amethyst-light), transparent);
}

.benefit-level.captain::after {
  background: linear-gradient(to right, var(--gold), transparent);
}

.benefit-level h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.benefit-level .level-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
}

.benefit-level.initiate .level-label {
  color: var(--kyanite-light);
  background: rgba(44, 95, 107, 0.15);
  border: 1px solid rgba(44, 95, 107, 0.3);
}

.benefit-level.navigator .level-label {
  color: var(--amethyst-light);
  background: rgba(90, 58, 122, 0.15);
  border: 1px solid rgba(90, 58, 122, 0.3);
}

.benefit-level.captain .level-label {
  color: var(--gold);
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.benefit-level ul {
  list-style: none;
  padding: 0;
}

.benefit-level ul li {
  padding: 0.4rem 0;
  color: var(--parchment-dark);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.benefit-level ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: 0.7rem;
}

/* --- Teachings Video Grid --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 700px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-item .video-title {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold);
  padding: 1rem;
  text-align: center;
  background: rgba(18, 29, 66, 0.6);
}

/* --- Principle list --- */
.principle-list {
  list-style: none;
  padding: 0;
}

.principle-list li {
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  background: rgba(18, 29, 66, 0.4);
  border: 1px solid rgba(197, 160, 89, 0.08);
  border-radius: 6px;
  color: var(--parchment);
  font-size: 1rem;
  position: relative;
  padding-left: 2.5rem;
  transition: all 0.3s ease;
}

.principle-list li:hover {
  border-color: rgba(197, 160, 89, 0.25);
  background: rgba(18, 29, 66, 0.6);
}

.principle-list li::before {
  content: '◈';
  position: absolute;
  left: 1rem;
  color: var(--gold);
}

/* --- Misc --- */
.quote-block {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--parchment);
  line-height: 1.8;
  font-style: italic;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(197, 160, 89, 0.04);
  border-radius: 0 8px 8px 0;
  max-width: 800px;
  margin: 2rem auto;
}

.text-center { text-align: center; }
.text-parchment { color: var(--parchment); }
.text-parchment-dark { color: var(--parchment-dark); }
.text-gold { color: var(--gold); }
.text-kyanite { color: var(--kyanite-light); }
.text-amethyst { color: var(--amethyst-light); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Donation button style */
.btn-donate {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 0.85rem 2.5rem;
  border: 2px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.btn-donate:hover {
  color: var(--ocean);
  background: var(--gold);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.4);
  transform: translateY(-2px);
  text-shadow: none;
}

/* Responsive hero */
@media (max-width: 600px) {
  .hero {
    padding: 3rem 1rem 2.5rem;
  }
  .section {
    padding: 2.5rem 1rem;
  }
  .card {
    padding: 1.5rem;
  }
  .benefit-level {
    padding: 1.5rem;
  }
}