body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #224A9A;
  background-image:
	linear-gradient(
	  135deg,
	  rgba(3, 3, 3, 0.35) 0%,
	  transparent 22%,
	  transparent 47%,
	  transparent 73%,
	  rgba(0, 0, 0, 0.35) 100%
	),
	linear-gradient(
	  to right,
	  #1d3f86,
	  #1d3f86 2px,
	  #224A9A 2px,
	  #224A9A 5px
	);
  background-size: 100% 100%, 5px 100%;
  background-attachment: fixed;
  color: #1d2327;
  line-height: 1.6;
}

.wrap {
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

h1 {
  margin-top: 0;
  color: #224A9A;
}

h2 {
  margin-top: 32px;
  color: #1d2327;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

h3 {
  margin-top: 24px;
  color: #224A9A;
}

ul {
  padding-left: 22px;
}

.button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 16px;
  background: #224A9A;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.button:hover {
  background: #135e96;
}

code {
  background: #f0f0f1;
  padding: 2px 5px;
  border-radius: 4px;
}

footer {
  margin-top: 40px;
  font-size: 13px;
  color: #646970;
}

.title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.title-row h1 {
  margin: 0;
  color: #224A9A;
}

.badge {
  display: inline-block;
  background: #224A9A;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  margin-top: 6px;
  white-space: nowrap;
}

.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  max-width: 220px;
  height: auto;
}

.note {
  background: #f0f6fc;
  border-left: 4px solid #224A9A;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.price-card {
  border: 1px solid #dcdcde;
  border-radius: 12px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.price-card.highlight {
  border-color: #224A9A;
  box-shadow: 0 5px 18px rgba(34,74,154,.18);
}

.price-card h3 {
  margin-top: 0;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #224A9A;
  margin: 8px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 28px;
}

.intro-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .wrap {
	margin: 20px;
	padding: 22px;
  }

  .title-row {
	flex-direction: column;
  }
  .intro-grid {
	grid-template-columns: 1fr;
	text-align: center;
  }

  .title-row {
	justify-content: center;
  }
}