:root{--legacy-008080:#008080;--legacy-1a2634:#1a2634;--legacy-555555:#555555;--legacy-b8f2e6:#b8f2e6;--legacy-e5e5e5:#e5e5e5}
:root{
  --teal:var(--legacy-008080, #008080);
  --mint:var(--legacy-b8f2e6, #B8F2E6);
  --navy:var(--legacy-1a2634, #1A2634);
  --white:var(--color-background, #ffffff);
  --soft:var(--color-surface-alt, #f7f9f9);
}

body{
  margin:0;
  font-family:'Inter', Arial, sans-serif;
  background:var(--color-background, #ffffff);
  color:var(--navy);
  line-height:1.7;
}

section{padding:40px 20px;}
.wrap{max-width:1150px; margin:auto;}

/* ROW 1: INFO BAR */
.info-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 30px;
    background: var(--soft);
    border-radius:var(--radius-md, 12px);
    border: 1px solid var(--legacy-e5e5e5, #e5e5e5);
    margin-bottom: 40px;
}

.info-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i { font-size: 20px; color: var(--teal); }
.info-item a { color: var(--navy); text-decoration: none; font-weight: 700; }
.info-item a:hover { color: var(--teal); }

/* ROW 2: ACTION CARDS */
.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.action-card {
    background: var(--color-background, #ffffff);
    padding: 40px;
    border-radius:var(--radius-lg, 15px);
    border: 1px solid var(--legacy-e5e5e5, #e5e5e5);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.action-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.action-card h3 { font-size: 26px; margin-top: 0; color: var(--navy); }
.action-card p { font-size: 18px; color: var(--legacy-555555, #555); }

.btn {
  background: var(--teal);
  color: white;
  padding: 16px 30px;
  border-radius: 50px;
  display: block;
  font-size: 19px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  text-align: center;
}

.btn-dark { background: var(--navy); }
.btn:hover { opacity: 0.9; transform: translateY(-2px); }

@media(max-width:900px){
  .action-grid { grid-template-columns: 1fr; }
  .info-bar { flex-direction: column; text-align: center; }
  .info-item { justify-content: center; }
}

.sticky{
  position:fixed;
  bottom:20px;
  right:20px;
  z-index:999;
}
.sticky a{
  background:var(--teal);
  color:white;
  padding:14px 26px;
  border-radius:50px;
  text-decoration:none;
  box-shadow:0 4px 10px rgba(0,0,0,0.25);
  font-weight:700;
  font-size:17px;
}