:root{
  --navy: #273555;
  --yellow: #ffd800;
  --bg: #f7f9fc;
  --white: #ffffff;
  --text: #1e1e1e;
  --muted: #afafaf;
  --border: #e5e7eb;

  --radius: 12px;
  --max: 1100px;
}

*{
  box-sizing: border-box;
}

body{
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--navy);
  color: var(--text);
}

/* ===============================
   LAYOUT CONTAINER
================================= */

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 60px auto;
}

/* ===============================
   CARD
================================= */

.card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

/* ===============================
   BANNER (INSIDE CARD)
================================= */

.banner-wrapper{
  text-align: center;
  margin-bottom: 30px;
}

.card-banner{
  max-width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
}

/* ===============================
   HEADINGS
================================= */

.title{
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--navy);
  text-align: center;
}

/* ===============================
   BODY TEXT
================================= */

.card p{
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 18px;
  color: var(--text);
}

/* Yellow accent divider */
.card hr{
  border: none;
  height: 3px;
  width: 70px;
  background: var(--yellow);
  margin: 30px 0;
}

/* ===============================
   LINKS
================================= */

.link{
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  transition: 0.2s ease;
}

.link:hover{
  background: var(--yellow);
  color: black;
}

/* ===============================
   BUTTONS
================================= */

.actions{
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn{
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 15px;
  transition: 0.2s ease;
}

.btn--primary{
  background: var(--yellow);
  color: black;
}

.btn--primary:hover{
  background: #e6c200;
}

.btn--ghost{
  background: white;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn--ghost:hover{
  background: var(--navy);
  color: white;
}

/* ===============================
   SMALL STATUS TEXT
================================= */

.small{
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

/* ===============================
   FOOTER
================================= */

.footer{
  text-align: center;
  margin-top: 40px;
  padding-bottom: 40px;
  font-size: 14px;
  color: var(--muted);
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px){
  main section h1 {
    font-size: 22px !important;
  }

  .container{
    margin: 30px auto;
  }

  .card{
    padding: 30px;
  }

  .title{
    text-align: left;
  }

  .banner-wrapper{
    margin-bottom: 20px;
  }
}
