:root {
  --clr-white: #ffffff;
  --clr-blue-light: #e0f2fe;
  --clr-blue-primary: #0284c7;
  --clr-blue-dark: #0c4a6e;
  --clr-text: #1e293b;
  --clr-text-light: #475569;
  --radius-pill: 9999px;
  --shadow-soft:
    0 4px 6px -1px rgba(2, 132, 199, 0.1),
    0 2px 4px -1px rgba(2, 132, 199, 0.06);
  --font-stack:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
body {
  margin: 0;
  font-family: var(--font-stack);
  font-stretch: condensed;
  color: var(--clr-text);
  background-color: var(--clr-white);
  line-height: 1.6;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--clr-white);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--clr-blue-dark);
  font-weight: 700;
  font-size: 1.5rem;
}
.brand-logo svg {
  width: 32px;
  height: 32px;
}
.desktop-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}
.desktop-nav a {
  text-decoration: none;
  color: var(--clr-text);
  font-weight: 600;
  transition: color 0.2s ease;
}
.desktop-nav a:hover {
  color: var(--clr-blue-primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cta-btn {
  background-color: var(--clr-blue-primary);
  color: var(--clr-white);
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: background-color 0.2s ease;
}
.cta-btn:hover {
  background-color: var(--clr-blue-dark);
}
.burger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--clr-blue-dark);
  cursor: pointer;
  padding: 0.25rem;
}
.burger-menu svg {
  width: 28px;
  height: 28px;
}
.mobile-nav {
  display: none;
  background-color: var(--clr-blue-light);
  padding: 1rem;
  border-top: 1px solid var(--clr-white);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav-list a {
  text-decoration: none;
  color: var(--clr-blue-dark);
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}
.site-footer {
  background-color: var(--clr-blue-dark);
  color: var(--clr-white);
  padding: 4rem 1.5rem 2rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
}
.footer-brand .brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-white);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand .tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-blue-light);
  margin: 0 0 1rem 0;
}
.footer-brand .summary {
  color: var(--clr-blue-light);
  margin: 0;
}
.footer-contact h4,
.footer-legal h4 {
  color: var(--clr-white);
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.contact-list,
.legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--clr-blue-light);
}
.contact-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.contact-list a,
.legal-list a {
  color: var(--clr-blue-light);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-list a:hover,
.legal-list a:hover {
  color: var(--clr-white);
  text-decoration: underline;
}
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .burger-menu {
    display: block;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* footer extras */
.footer__extras {
  margin-top: 16px;
}
.footer__extrasInner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.footer-social__icon {
  display: block;
}
.footer__poemWrap {
  max-width: 520px;
}
.footer-poem {
  opacity: 0.9;
  font-size: 0.95em;
  line-height: 1.35;
}

@media (max-width: 480px) {
  .header-actions .cta-btn {
    display: none;
  }
}

/* ============================================
   PRIVACY POLICY COMPONENT STYLES
   AlpineRent - Alpine Styling
   ============================================ */

/* Container Card */
.container-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
}

/* Soft Shadow */
.components-soft-shadow {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08), 0 4px 10px -5px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s ease;
}

.components-soft-shadow:hover {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
}

/* Radius Pill */
.radius-pill {
  border-radius: 40px;
}

/* Accent Badge */
.accents-badge-accent {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #2c5f2d;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.accents-badge-accent::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2c5f2d, #97bc62);
  border-radius: 3px;
}

/* Last Updated */
.last-updated {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

/* Sections */
.container-card section {
  margin-bottom: 36px;
}

.container-card section:last-of-type {
  margin-bottom: 0;
}

.container-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #2c5f2d;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.container-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 12px;
}

/* List Styles */
.container-card ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  background: #f8f9fa;
  border-radius: 24px;
  padding: 20px 24px;
  border: 1px solid #e9ecef;
}

.container-card ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #4a5568;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.container-card ul li:last-child {
  margin-bottom: 0;
}

.container-card ul li strong {
  color: #2c5f2d;
  font-weight: 600;
  min-width: 80px;
  display: inline-block;
}

/* Links */
.container-card a {
  color: #2c5f2d;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.container-card a:hover {
  color: #1e3a1f;
  border-bottom-color: #2c5f2d;
}

/* Address / Contact block */
.container-card ul li:first-child strong {
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container-card {
    padding: 32px 24px;
  }
  
  .accents-badge-accent {
    font-size: 1.8rem;
  }
  
  .container-card h2 {
    font-size: 1.3rem;
  }
  
  .container-card p {
    font-size: 0.9rem;
  }
  
  .container-card ul {
    padding: 16px;
  }
  
  .container-card ul li {
    flex-direction: column;
    gap: 4px;
  }
  
  .container-card ul li strong {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .container-card {
    padding: 24px 20px;
  }
  
  .radius-pill {
    border-radius: 28px;
  }
  
  .accents-badge-accent {
    font-size: 1.5rem;
  }
  
  .accents-badge-accent::after {
    width: 40px;
    bottom: -6px;
  }
  
  .last-updated {
    margin-bottom: 28px;
    font-size: 0.75rem;
  }
  
  .container-card section {
    margin-bottom: 28px;
  }
}