﻿/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: #F0F4FF; color: #2A4A7F; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --gold:       #1E40AF;
  --gold-dark:  #1E3A8A;
  --gold-light: #93C5FD;
  --cream:      #F0F4FF;
  --beige:      #DBEAFE;
  --brown-dark: #1E3A8A;
  --brown:      #2A4A7F;
  --brown-bg:   #0C1F4A;
}

/* ===== LOGO FILTERS ===== */
/* Logo is already gold — no color shift needed */
.logo-gold  { filter: none; }
/* White version for dark footer background */
.logo-light { filter: brightness(0) invert(1) opacity(0.82); }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-fb {
  display: inline-block;
  background: #1877F2;
  color: white;
  padding: 0.45rem 1.1rem;
  border-radius: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  border: none;
  margin-left: 0.25rem;
}
.btn-fb:hover { background: #0b5fcc; color: white; }
.desktop-nav .btn-fb,
.desktop-nav .btn-fb:hover,
.desktop-nav .btn-fb.active {
  background: #1877F2;
  color: white;
  padding: 0.45rem 1.1rem;
  font-size: 0.88rem;
  border-bottom: none;
  border-radius: 0.4rem;
}
.desktop-nav .btn-fb:hover { background: #0b5fcc; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.7rem 1.75rem;
  border-radius: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: white; }

.btn-outline-light {
  display: inline-block;
  border: 2px solid var(--gold-light);
  color: var(--gold-light);
  padding: 0.7rem 1.75rem;
  border-radius: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.btn-outline-light:hover { background: var(--gold-light); color: var(--brown-dark); }

/* ===== SITE HEADER ===== */
.site-header {
  background: white;
  box-shadow: 0 1px 10px rgba(15,32,68,0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header--home { overflow: visible; }
.site-header--home .header-inner { align-items: flex-start; max-width: none; margin-left: 0; margin-right: 0; }
.site-header--home .logo-link { align-items: flex-start; flex-shrink: 0; min-width: 200px; }
.site-header--home .desktop-nav { position: static; transform: none; top: auto; flex: 1; justify-content: center; align-self: center; }
.site-header--home .logo-link > div { margin-top: 16px; }
.logo-gold--hero {
  height: 164px;
  position: relative;
  z-index: 51;
  margin-bottom: -80px;
  background: white;
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(12,31,74,0.25);
}
.header-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-gold:not(.logo-gold--hero) { height: clamp(38px, 3.6vw, 52px); width: auto; }
.logo-name { font-family: 'Playfair Display', serif; font-size: clamp(0.9rem, 1.1vw, 1.2rem); font-weight: 700; color: var(--brown-dark); line-height: 1.1; text-transform: uppercase; letter-spacing: 0.04em; }
.logo-sub + .logo-name { text-transform: none; letter-spacing: 0; }
.logo-sub  { font-size: clamp(0.55rem, 0.6vw, 0.67rem); font-weight: 700; letter-spacing: 0.16em; color: var(--gold); text-transform: uppercase; font-family: 'Lato', sans-serif; }

.desktop-nav { display: none; align-items: center; gap: 1.1rem; }
.desktop-nav a {
  color: var(--brown);
  font-size: 1.05rem;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: all 0.18s;
  white-space: nowrap;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }
.desktop-nav .btn-gold,
.desktop-nav .btn-gold:hover,
.desktop-nav .btn-gold.active,
.desktop-nav a.btn-gold.active { color: white; border-bottom: none; padding: 0.45rem 1.1rem; font-size: 0.92rem; margin-left: 0.25rem; }

.menu-btn { background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--brown-dark); display: flex; align-items: center; }
.mobile-menu { display: none; background: white; border-top: 2px solid var(--beige); }
.mobile-menu a { display: block; color: var(--brown); font-weight: 600; font-size: 0.95rem; padding: 0.65rem 1.5rem; border-bottom: 1px solid #DBEAFE; transition: color 0.15s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .btn-gold { margin: 0.75rem 1.5rem 1rem; display: block; text-align: center; border-bottom: none; }
.mobile-menu .btn-gold:hover { color: white; }

@media (min-width: 1280px) {
  .desktop-nav { display: flex; }
  .menu-btn { display: none; }
}

/* Szűk desktop / nagy zoom: kisebb nav betűméret, kevesebb gap */
@media (min-width: 1280px) and (max-width: 1440px) {
  .desktop-nav { gap: 0.6rem; font-size: 0.97rem; }
  .desktop-nav .btn-gold { font-size: 0.85rem; padding: 0.4rem 0.9rem; }
  .logo-name { font-size: 1.05rem; }
}

/* ===== LAYOUT ===== */
.container { max-width: 1152px; margin: 0 auto; }
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.section-label { color: var(--gold); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.6rem; font-family: 'Lato', sans-serif; display: block; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.35rem); font-weight: 700; color: var(--brown-dark); margin-bottom: 1rem; }
.section-lead { color: var(--brown); line-height: 1.85; max-width: 680px; margin-bottom: 2rem; font-size: 1rem; }
.gold-bar { height: 3px; width: 50px; background: var(--gold); margin-bottom: 1.75rem; }
.gold-bar-center { height: 3px; width: 50px; background: var(--gold); margin: 0.75rem auto 1.75rem; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.5rem; }

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: 0.875rem;
  box-shadow: 0 2px 16px rgba(15,32,68,0.07);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 24px rgba(15,32,68,0.12); transform: translateY(-2px); }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 0.5rem; }
.card-body { font-size: 0.9rem; line-height: 1.75; color: var(--brown); }

/* ===== STAT BOX ===== */
.stat-box {
  background: var(--cream);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  border-left: 4px solid var(--gold);
}
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 700; color: var(--brown-dark); line-height: 1; }
.stat-label  { font-size: 0.82rem; color: var(--brown); margin-top: 0.25rem; }

/* ===== PRICE TABLE ===== */
.table-wrap { overflow-x: auto; border-radius: 0.875rem; box-shadow: 0 2px 16px rgba(15,32,68,0.08); }
.price-table { width: 100%; border-collapse: collapse; background: white; }
.price-table thead tr { background: var(--brown-dark); }
.price-table th { padding: 1rem 1.25rem; text-align: left; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; font-family: 'Lato', sans-serif; color: var(--gold-light); }
.price-table th:not(:first-child) { text-align: right; }
.price-table td { padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--beige); color: var(--brown-dark); font-size: 0.95rem; vertical-align: middle; }
.price-table td:not(:first-child) { text-align: right; font-weight: 700; color: var(--brown); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: #F0F4FF; }

/* ===== INCLUDES LIST ===== */
.includes-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.includes-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; color: var(--brown); }
.includes-list li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #0C1F4A 0%, #1E40AF 55%, #1E40AF 100%);
  padding: 3.75rem 1.5rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: #F0F4FF; margin-bottom: 0.5rem; }
.page-hero p { color: var(--beige); font-size: 1rem; max-width: 560px; margin: 0.75rem auto 0; line-height: 1.7; }
.page-hero .gold-bar-center { margin-top: 0.875rem; }

/* ===== MAIN HERO (index.html) ===== */
.main-hero-text {
  background: linear-gradient(135deg, #0C1F4A 0%, #1E40AF 55%, #1E40AF 100%);
  padding: 60px 1.5rem 2.5rem;
  text-align: center;
  position: relative;
}
.main-hero-text h1 { font-size: clamp(1.8rem, 4.5vw, 3.6rem); font-weight: 700; color: #ffffff; line-height: 1.2; word-spacing: 0.35em; letter-spacing: 0.04em; }
.hero-logo-drop {
  display: flex;
  justify-content: center;
  margin-top: -56px;
  margin-bottom: 1.25rem;
}
.hero-logo-drop img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: white;
  border-radius: 50% 50% 50% 50% / 40% 40% 65% 65%;
  padding: 10px;
  box-shadow: 0 6px 24px rgba(12,31,74,0.3);
}
.main-hero-image { width: 100%; line-height: 0; }
.main-hero-image img { width: 100%; max-height: 520px; object-fit: cover; display: block; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, #0C1F4A 0%, #1E40AF 55%, #1E40AF 100%); padding: 5rem 1.5rem; text-align: center; }
.cta-banner h2 { color: #F0F4FF; margin-bottom: 1rem; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.cta-banner p { color: var(--beige); max-width: 560px; margin: 0 auto 2.25rem; line-height: 1.8; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; align-items: center; }
.tel-link { color: var(--gold-light); font-weight: 700; font-size: 1.05rem; transition: color 0.2s; }
.tel-link:hover { color: white; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.gallery-cat {
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--beige);
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery-cat:hover { transform: scale(1.02); }
.gallery-cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-cat-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--beige), #D4C4A0);
  font-size: 2rem;
}
.gallery-cat-label {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(15,32,68,0.88), transparent);
  width: 100%;
  padding: 1.5rem 1rem 0.875rem;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 700; font-size: 0.875rem; color: var(--brown-dark); margin-bottom: 0.4rem; }
.form-label .required { color: var(--gold); }
.form-control {
  width: 100%;
  border: 2px solid var(--beige);
  border-radius: 0.4rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  color: var(--brown-dark);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: #8AABCC; }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }

/* ===== PROCESS STEPS ===== */
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== INFO CARDS ===== */
.info-card {
  background: white;
  border-radius: 0.875rem;
  padding: 1.75rem;
  box-shadow: 0 2px 14px rgba(15,32,68,0.07);
  text-align: center;
}
.info-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.info-card-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; font-family: 'Lato', sans-serif; }
.info-card-body { color: var(--brown-dark); font-size: 0.95rem; line-height: 1.65; }
.info-card-body a { color: var(--brown-dark); font-weight: 600; transition: color 0.2s; }
.info-card-body a:hover { color: var(--gold); }

/* ===== APARTMENT CARD ===== */
.apt-card {
  background: white;
  border-radius: 0.875rem;
  box-shadow: 0 2px 14px rgba(15,32,68,0.07);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.apt-card:hover { box-shadow: 0 6px 24px rgba(15,32,68,0.13); transform: translateY(-3px); }
.apt-card-header {
  background: linear-gradient(135deg, var(--brown-dark), #1E40AF);
  padding: 1.5rem 1.75rem;
  color: white;
}
.apt-card-header h3 { font-size: 1.2rem; color: #F0F4FF; margin-bottom: 0.25rem; }
.apt-card-size { font-size: 0.85rem; color: var(--gold-light); }
.apt-card-body { padding: 1.5rem 1.75rem; }
.apt-card-price { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--gold); line-height: 1; }
.apt-card-price-label { font-size: 0.8rem; color: var(--brown); margin-bottom: 1rem; }
.apt-features { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; font-size: 0.875rem; color: var(--brown); }
.apt-features li { display: flex; align-items: center; gap: 0.5rem; }
.apt-features li::before { content: "✓"; color: var(--gold); font-weight: 700; }

/* ===== SITE FOOTER ===== */
.site-footer { background: var(--brown-bg); color: #93C5FD; padding: 3.5rem 1.5rem 1.5rem; }
.footer-inner { max-width: 1152px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-weight: 700; color: #F0F4FF; font-size: 1.1rem; line-height: 1.1; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-logo-sub { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; }
.footer-desc { font-size: 0.875rem; line-height: 1.75; margin-top: 0.75rem; }
.footer-heading { color: var(--gold-light); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.875rem; font-family: 'Lato', sans-serif; }
.footer-links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-links a { color: #93C5FD; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.fb-link:hover { color: #1877F2 !important; }
.footer-links span { font-size: 0.875rem; }
.footer-bottom { border-top: 1px solid #1E3A8A; padding-top: 1.25rem; text-align: center; font-size: 0.78rem; color: #4A7ABB; margin-top: 0.5rem; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-beige { background: var(--beige); }
.bg-cream { background: var(--cream); }
.bg-white { background: white; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.75rem; }
.mt-lg { margin-top: 2.5rem; }
.mb-sm { margin-bottom: 1rem; }

/* ===== APARTMENT GRID ===== */
.apt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

/* ===== TABLET (768–1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 > *:last-child:nth-child(odd) { grid-column: span 2; max-width: 420px; margin: 0 auto; width: 100%; }
  .apt-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== MOBILE (max 767px) ===== */
@media (max-width: 767px) {
  /* Sections */
  .section     { padding: 2.75rem 1.125rem; }
  .section-sm  { padding: 2rem 1.125rem; }
  .cta-banner  { padding: 2.75rem 1.125rem; }
  .page-hero   { padding: 2.25rem 1.125rem; }

  /* Logo */
  .logo-name { font-size: 1rem; }
  .logo-sub  { font-size: 0.58rem; }
  .header-inner { padding: 0.6rem 1rem; }

  /* Homepage: drop-effekt kikapcsolása mobilon */
  .logo-gold--hero {
    height: 60px;
    margin-bottom: 0;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(12,31,74,0.15);
  }
  .site-header--home .header-inner { align-items: center; }
  .site-header--home .logo-link    { align-items: center; }
  .site-header--home .logo-link > div { margin-top: 0; }

  /* Hero image */
  .main-hero-image img { max-height: 220px; }

  /* Grids → 1 column */
  .grid-3 { grid-template-columns: 1fr; }
  .grid-3 > * { grid-column: auto !important; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* CTA buttons stack vertically */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions a, .cta-actions .btn-gold, .cta-actions .btn-outline-light { width: 100%; max-width: 320px; text-align: center; }

  /* Stat boxes 2×2 */
  .grid-4.stat-grid { grid-template-columns: repeat(2, 1fr); }

  /* Apartment cards */
  .apt-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .apt-grid > * { grid-column: auto !important; }
  .apt-card-price { font-size: 1.45rem; }

  /* Footer: 2 columns on mobile */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }

  /* Gallery: 2 columns */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }

  /* Process steps */
  .process-step { gap: 1rem; }

  /* Price table font */
  .price-table th, .price-table td { font-size: 0.82rem; padding: 0.7rem 0.875rem; }

  /* Info cards (kapcsolat) */
  .grid-3 .info-card { padding: 1.25rem; }

  /* Section title smaller */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ===== VERY SMALL (max 420px) ===== */
@media (max-width: 420px) {
  .logo-name { font-size: 0.9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== THANK YOU MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 31, 74, 0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: modalFadeIn 0.2s ease-out;
}
.modal-overlay.is-open { display: flex; }
.modal-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(12, 31, 74, 0.35);
  position: relative;
  animation: modalSlideUp 0.25s ease-out;
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--brown);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color 0.15s;
}
.modal-close:hover { color: var(--brown-dark); }
.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}
.modal-text {
  color: var(--brown);
  font-size: 1rem;
  line-height: 1.6;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== DOWNLOAD CARD (Jelentkezési Adatlap kiemelt link) ===== */
.download-card {
  display: block;
  background: var(--cream);
  border: 2px dashed var(--gold);
  border-radius: 0.875rem;
  padding: 1.75rem;
  margin-top: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  max-width: 420px;
}
.download-card:hover {
  background: var(--beige);
  border-style: solid;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(12, 31, 74, 0.18);
}
