:root {
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-dark: #0f172a;
  --accent: #10b981;
  --accent-hover: #059669;
  --bg-dark: #0f172a;
  --bg-card: #1e293b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-main: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 20px rgba(2, 132, 199, 0.35);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-main);
  background-color: #f1f5f9;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

/* TOP HEADER BAR */
.top-bar {
  background: var(--bg-dark);
  color: #94a3b8;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-info .item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #94a3b8;
}

.top-bar-info .item a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.top-bar-info .item a:hover {
  color: var(--accent);
}

.top-bar-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.top-bar-social a {
  color: #94a3b8;
  font-size: 1rem;
  transition: var(--transition);
}

.top-bar-social a:hover {
  color: var(--accent);
}

/* MAIN NAVBAR */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-container img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--bg-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* HERO SLOGAN BADGE */
.hero-slogan-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.hero-slogan-img {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s ease;
}

.hero-slogan-img:hover {
  transform: scale(1.06) rotate(2deg);
}

@media (max-width: 768px) {
  .hero-slogan-img {
    width: 130px;
  }
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 600;
  color: var(--bg-dark);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(2, 132, 199, 0.05);
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.dropdown-item:hover {
  background: #f1f5f9;
  color: var(--primary);
  padding-left: 1.5rem;
}

.btn-oficina {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: white !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
  font-weight: 600;
}

.btn-oficina:hover, .btn-oficina:focus {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #0284c7 100%) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.5);
}

/* MOBILE TOGGLE */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--bg-dark);
  cursor: pointer;
}

/* LAYOUT CONTAINER */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: #0f172a;
  color: white;
  padding: 6rem 0 7rem;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  filter: brightness(0.85);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  background: linear-gradient(to right, #ffffff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: white;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
}

.hero-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.hero-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.hero-card ul li {
  padding: 0.5rem 0;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card ul li i {
  color: var(--accent);
}

/* SECTION UTILS */
.section {
  padding: 4.5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* DYNAMIC CONTENT CONTAINER */
.page-view {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.page-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* QUICK SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-link {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
}

/* CARDS & PANELS */
.info-panel {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.info-panel h2 {
  font-size: 1.75rem;
  color: var(--bg-dark);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.info-panel p {
  color: var(--text-main);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.info-panel p a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.info-panel p a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.branch-map {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-top: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.branch-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.branch-map:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.6rem;
  text-decoration: none;
  transition: var(--transition);
}

.map-link:hover {
  color: var(--primary-dark, #0284c7);
  text-decoration: underline;
}

/* TABLES */
.custom-table-container {
  overflow-x: auto;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.custom-table th {
  background: #f8fafc;
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: var(--bg-dark);
  border-bottom: 2px solid var(--border-color);
}

.custom-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
}

/* CARGO BADGES */
.badge-role {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
}

.badge-presidente {
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
}

.badge-vicepresidente {
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
}

.badge-secretario {
  background: rgba(168, 85, 247, 0.12);
  color: #7e22ce;
}

.badge-prosecretario {
  background: rgba(148, 163, 184, 0.15);
  color: #64748b;
}

.badge-tesorero {
  background: rgba(234, 179, 8, 0.15);
  color: #b45309;
}

.badge-protesorero {
  background: rgba(249, 115, 22, 0.12);
  color: #c2410c;
}

.badge-vocal-titular {
  background: rgba(14, 165, 233, 0.1);
  color: #0369a1;
}

.badge-vocal-suplente {
  background: rgba(100, 116, 139, 0.1);
  color: #475569;
}

.badge-sindico-titular {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.badge-sindico-suplente {
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
}

.custom-table tbody tr:hover {
  background: #f1f5f9;
}

.pdf-btn {
  color: #ef4444;
  font-size: 1.35rem;
  transition: var(--transition);
}

.pdf-btn:hover {
  color: #dc2626;
  transform: scale(1.15);
}

/* FORMS */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--bg-dark);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: #f8fafc;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* GRID LAYOUTS */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

/* FOOTER */
.footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.contact-list i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-list a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.contact-list a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 73px);
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1rem;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-item {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: none;
  }
  .nav-item.open .dropdown-menu {
    display: block;
  }

  /* Responsive Top Bar */
  .top-bar {
    padding: 0.6rem 1rem;
  }
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .top-bar-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    width: 100%;
  }
  .top-bar-info .item {
    font-size: 0.825rem;
    flex-wrap: wrap;
    line-height: 1.4;
  }
  .top-bar-social {
    width: 100%;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: flex-start;
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
}

/* E.P.R.E. SECTION STYLES */
.epre-hero-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border: 2px solid rgba(2, 132, 199, 0.2);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 12px 30px -5px rgba(2, 132, 199, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.epre-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.epre-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary-hover);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.epre-hero-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.epre-hero-desc {
  font-size: 1.1rem;
  color: var(--text-main);
  max-width: 760px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.btn-epre-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #ffffff !important;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.15rem 2.5rem;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.btn-epre-lg:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #035388 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 28px rgba(2, 132, 199, 0.45);
  color: #ffffff !important;
}

.btn-epre-lg i.fa-arrow-right {
  transition: transform 0.3s ease;
}

.btn-epre-lg:hover i.fa-arrow-right {
  transform: translateX(5px);
}

.epre-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* EPRE INFO SECTION */
.epre-info-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}

.epre-info-header {
  margin-bottom: 1.5rem;
}

.epre-info-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.epre-info-header h3 i {
  color: var(--primary);
}

.epre-intro-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.epre-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.epre-pillar-item {
  background: #f8fafc;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.epre-pillar-item:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.epre-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.epre-pillar-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
}

.epre-pillar-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .epre-hero-card {
    padding: 2.25rem 1.25rem;
  }
  .epre-hero-title {
    font-size: 1.5rem;
  }
  .btn-epre-lg {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
  }
  .epre-info-card {
    padding: 2rem 1.25rem;
  }
}

