

body {
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto;
  background:#f4f8fc;
  color:#1e293b;
}

/* CONTAINER */
.container {
  max-width:1100px;
  margin:auto;
  padding:20px;
}

/* HERO */
.hero {
  background:linear-gradient(135deg,#0f4c81,#3da5d9);
  color:#fff;
  border-radius:28px;
  padding:60px 40px;
  margin-bottom:40px;
}

.hero h1 {
  font-size:42px;
  margin-bottom:20px;
  line-height:1.2;
}

.hero p {
  font-size:18px;
  opacity:0.95;
  max-width:800px;
}

/* CARD */
.card {
  background:#fff;
  padding:28px;
  border-radius:20px;
  box-shadow:0 8px 30px rgba(0,0,0,0.05);
  margin-bottom:28px;
}

/* TITLES */
h2 {
  font-size:28px;
  color:#0f4c81;
  margin-bottom:12px;
}

h3 {
  font-size:20px;
  color:#0284c7;
  margin-top:18px;
}

/* TEXT */
p {
  font-size:16px;
  margin-bottom:14px;
}

ul {
  padding-left:20px;
}

/* TEMP BLOCK */
.temp-highlight {
  text-align:center;
  background:linear-gradient(135deg,#e0f2fe,#f8fbff);
  border-radius:24px;
  padding:40px;
  margin:30px 0;
}

.temp-highlight strong {
  font-size:52px;
  color:#0284c7;
  display:block;
}

.temp-highlight span {
  color:#64748b;
}

/* TABLE */
table {
  width:100%;
  border-collapse:collapse;
  margin-top:20px;
}

th {
  background:#0f4c81;
  color:#fff;
  padding:14px;
}

td {
  padding:14px;
  border:1px solid #e2e8f0;
}

tr:nth-child(even) {
  background:#f1f5f9;
}

/* CTA */
.cta {
  background:linear-gradient(135deg,#e0f2fe,#ffffff);
  text-align:center;
  padding:40px;
  border-radius:24px;
}

.cta h2 {
  margin-bottom:10px;
}

.cta a {
  display:inline-block;
  margin-top:15px;
  padding:14px 28px;
  background:#0f4c81;
  color:#fff;
  text-decoration:none;
  border-radius:999px;
  font-weight:bold;
}

/* FAQ */
.faq {
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:20px;
  margin-bottom:16px;
  background:#fff;
}

/* MOBILE */
@media(max-width:768px){
.hero h1{font-size:28px}
.temp-highlight strong{font-size:38px}
}

