/* Beach Park Tickets — Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --primary: #006BB4;
  --primary-dark: #004A7F;
  --primary-light: #0088E0;
  --accent: #FF5C00;
  --accent-dark: #CC4A00;
  --green: #2DB560;
  --green-dark: #1F8A47;
  --gold: #FFC107;
  --red: #D32F2F;
  --white: #ffffff;
  --off-white: #fafafa;
  --cream: #f5f5f5;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --gray-900: #212529;
  --black: #0a0a0a;
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --container: 1200px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.2);
  --ease: cubic-bezier(.4,0,.2,1);
  --duration: .3s;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.al-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Promo Banner ── */
.al-promo {
  background: linear-gradient(90deg, var(--red) 0%, #b71c1c 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: .85rem;
  font-weight: 600;
  flex-wrap: wrap;
  text-align: center;
}
.al-promo__discount {
  background: rgba(255,255,255,.2);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: .5px;
}
.al-promo__timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,.2);
  padding: 4px 10px;
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
}

/* ── Header ── */
.al-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #0a1628 100%);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  padding: 0 0;
  backdrop-filter: blur(10px);
}
.al-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.al-header__logo img {
  height: 48px;
  width: auto;
}
.al-header__nav {
  display: flex;
  gap: 32px;
}
.al-header__link {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 600;
  transition: color var(--duration) var(--ease);
  position: relative;
}
.al-header__link:hover,
.al-header__link--active {
  color: #fff;
}
.al-header__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.al-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.al-header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.al-header__menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--duration) var(--ease);
}

/* ── Buttons ── */
.al-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}
.al-btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,92,0,.3);
}
.al-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,92,0,.4);
}
.al-btn--sm { padding: 10px 20px; font-size: .85rem; }
.al-btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.al-lang-btn {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  font-family: var(--font-primary);
}
.al-lang-btn:hover {
  background: rgba(255,255,255,.25);
}

/* ── Hero ── */
.al-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.al-hero__bg {
  position: absolute;
  inset: 0;
}
.al-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.al-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,30,60,.85) 0%, rgba(0,60,120,.6) 50%, rgba(0,30,60,.75) 100%);
}
.al-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 720px;
}
.al-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.al-hero__title {
  font-family: var(--font-display);
  color: #fff;
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
.al-hero__title span { display: block; }
.al-hero__title span:last-child {
  color: var(--gold);
  font-size: 1.8rem;
}
.al-hero__subtitle {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.al-hero__cta { margin-bottom: 32px; }
.al-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.al-hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 500;
}
.al-hero__feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Sections ── */
.al-section {
  padding: 80px 0;
}
.al-section--alt {
  background: var(--gray-100);
}
.al-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.al-section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.al-section__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.al-section__subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Ticket Cards ── */
.al-tickets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.al-ticket {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  position: relative;
}
.al-ticket:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.al-ticket__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}
.al-ticket__discount {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 800;
  z-index: 2;
}
.al-ticket__image {
  height: 200px;
  overflow: hidden;
}
.al-ticket__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.al-ticket:hover .al-ticket__image img {
  transform: scale(1.08);
}
.al-ticket__body {
  padding: 24px;
}
.al-ticket__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}
.al-ticket__icon svg { width: 22px; height: 22px; }
.al-ticket__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.al-ticket__desc {
  color: var(--gray-500);
  font-size: .9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.al-ticket__features {
  list-style: none;
  margin-bottom: 20px;
}
.al-ticket__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: .85rem;
  color: var(--gray-700);
}
.al-ticket__feature::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}
.al-ticket__pricing {
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
  margin-bottom: 16px;
}
.al-ticket__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}
.al-ticket__price-label {
  font-size: .9rem;
  color: var(--gray-500);
}
.al-ticket__price-value {
  display: flex;
  align-items: center;
  gap: 8px;
}
.al-ticket__price-original {
  text-decoration: line-through;
  color: var(--gray-500);
  font-size: .85rem;
}
.al-ticket__price-current {
  color: var(--red);
  font-weight: 800;
  font-size: 1.15rem;
}
.al-ticket__cta {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  font-family: var(--font-primary);
}
.al-ticket__cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* ── Experiences ── */
.al-experiences {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.al-experience {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.al-experience:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.al-experience__image {
  height: 180px;
  overflow: hidden;
}
.al-experience__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.al-experience__body {
  padding: 20px;
}
.al-experience__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.al-experience__desc {
  color: var(--gray-500);
  font-size: .88rem;
  line-height: 1.5;
}

/* ── Benefits ── */
.al-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.al-benefit {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease);
}
.al-benefit:hover {
  transform: translateY(-4px);
}
.al-benefit__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}
.al-benefit__icon svg { width: 28px; height: 28px; }
.al-benefit__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.al-benefit__desc {
  color: var(--gray-500);
  font-size: .88rem;
  line-height: 1.5;
}

/* ── How It Works ── */
.al-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.al-step {
  text-align: center;
  position: relative;
}
.al-step__number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.al-step__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.al-step__desc {
  color: var(--gray-500);
  font-size: .88rem;
  line-height: 1.5;
}

/* ── CTA Section ── */
.al-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 64px 0;
  text-align: center;
  color: #fff;
}
.al-cta-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}
.al-cta-section p {
  color: rgba(255,255,255,.8);
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.al-cta-section .al-cta__timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}

/* ── Footer ── */
.al-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
  padding: 48px 0 24px;
}
.al-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.al-footer__col h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.al-footer__col a,
.al-footer__col p {
  display: block;
  font-size: .85rem;
  margin-bottom: 8px;
  transition: color var(--duration);
}
.al-footer__col a:hover { color: #fff; }
.al-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .8rem;
}
.al-footer__badges {
  display: flex;
  align-items: center;
  gap: 12px;
}
.al-footer__badges svg {
  width: 20px;
  height: 20px;
  opacity: .6;
}

/* ── Animations ── */
.al-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.al-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Nav Overlay ── */
.al-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.al-mobile-nav.active { display: flex; }
.al-mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}
.al-mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ── Modal Overlay ── */
.al-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.al-modal-overlay.active { display: flex; }

.al-modal {
  background: var(--white);
  border-radius: 16px;
  width: 90vw;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}

.al-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}
.al-modal__header h2 { margin: 0; font-size: 1.3rem; }
.al-modal__header small { color: #888; }
.al-modal__close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #666;
  padding: 4px 8px;
}
.al-modal__timer {
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .85rem;
  font-variant-numeric: tabular-nums;
}

.al-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.al-modal__left {
  padding: 20px;
  border-right: 1px solid #eee;
}

.al-modal__tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.al-modal__tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f8f8f8;
  cursor: pointer;
  font-size: .85rem;
  font-family: var(--font-primary);
  transition: all .2s;
}
.al-modal__tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.al-modal__tab svg { width: 16px; height: 16px; }

.al-modal__ticket {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.al-modal__ticket-info h4 { margin: 0 0 4px; font-size: .9rem; }
.al-original {
  text-decoration: line-through;
  color: #999;
  font-size: .85rem;
  margin-right: 6px;
}
.al-price { color: var(--red); font-weight: 700; }
.al-free { color: var(--green); font-weight: 700; }

.al-modal__qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.al-modal__qty button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #f8f8f8;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  transition: all .2s;
}
.al-modal__qty button:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.al-modal__qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
}

.al-modal__right { padding: 20px; }
.al-modal__section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
}
.al-modal__section-label svg { width: 16px; height: 16px; }
.al-modal__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.al-modal__form-group { margin-bottom: 10px; }
.al-modal__form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}
.al-modal__form-group input,
.al-modal__form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: .9rem;
  font-family: var(--font-primary);
  transition: border-color .2s;
}
.al-modal__form-group input:focus,
.al-modal__form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.al-modal__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 2px solid #eee;
  margin-top: 10px;
}
.al-modal__total-label { font-weight: 600; }
.al-modal__total-amount { font-size: 1.4rem; font-weight: 800; }
.al-modal__total-saved {
  display: block;
  font-size: .8rem;
  color: var(--green);
  font-weight: 600;
}

.al-modal__pay-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: all .2s;
  font-family: var(--font-primary);
}
.al-modal__pay-btn:hover { filter: brightness(1.1); }

.al-modal__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: .75rem;
  color: #999;
}
.al-modal__secure svg { width: 12px; height: 12px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .al-hero__title { font-size: 2.6rem; }
  .al-section__title { font-size: 2rem; }
}

@media (max-width: 768px) {
  .al-header__nav { display: none; }
  .al-header__menu { display: flex; }
  .al-modal__body { grid-template-columns: 1fr; }
  .al-modal__left { border-right: none; border-bottom: 1px solid #eee; }
  .al-hero { min-height: 500px; }
  .al-hero__title { font-size: 2.2rem; }
  .al-hero__title span:last-child { font-size: 1.4rem; }
  .al-hero__features { gap: 12px; }
  .al-hero__content { padding: 60px 20px; }
  .al-tickets { grid-template-columns: 1fr; }
  .al-footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .al-hero__title { font-size: 1.8rem; }
  .al-hero__subtitle { font-size: .95rem; }
  .al-btn--lg { padding: 14px 24px; font-size: .95rem; }
  .al-section { padding: 48px 0; }
  .al-section__title { font-size: 1.6rem; }
  .al-modal__form-row { grid-template-columns: 1fr; }
  .al-promo { font-size: .75rem; gap: 6px; }
}

/* ── Legal Pages ── */
.al-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}
.al-legal h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 24px;
}
.al-legal h2 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
}
.al-legal p {
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.7;
}
.al-legal ul {
  margin: 0 0 16px 24px;
  color: var(--gray-700);
}
.al-legal ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.al-legal a {
  color: var(--primary);
  text-decoration: underline;
}
