/* UNIVERSAL RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, sans-serif;
    background: #f7f9fc;
    color: #111;
}

/* NAVIGATION */
.topnav {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2c5282;
}

.topnav a {
    margin-left: 1.25rem;
    text-decoration: none;
    font-weight: 600;
    color: #111;
}

.topnav a:hover,
.topnav a.active {
    color: #2c5282;
}

/* PANELS */
.panel {
    display: none;
    padding: 1.5rem;
    max-width: 960px;
    margin: auto;
    animation: fade 0.2s ease-in-out;
}

.panel.active {
    display: block;
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* HERO */
.hero {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.hero-actions .btn {
    margin-right: 0.75rem;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: #2c5282;
    color: #fff;
}

.btn-primary:hover {
    background: #1e3a5f;
}

.btn-ghost {
    background: #fff;
    color: #111;
    border: 1px solid #e5e5e5;
}

/* GRID + CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid transparent;
}

.card:hover {
    border-color: #2c5282;
}

.card-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
}

/* FORMS */
input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* FOOTER */
.footer {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}
.timeline {
  position: relative;
  margin: 2rem auto;
  padding-left: 2rem;
  border-left: 3px solid #0077cc;
  max-width: 600px;
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-date {
  font-weight: bold;
  color: #0077cc;
  margin-bottom: 0.25rem;
}

.timeline-content {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: #0077cc;
  border-radius: 50%;
}
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
}

.modal .close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}

