/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;

}

/* LAYOUT */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  overflow: hidden;
}

.section {
  padding: 10px 0;
}

.section--light {
  background: #f7f7f7;
}

.section--highlight {
  background: #eef6ff;
}

.section--cta {
  background: #111;
  color: #fff;
  text-align: center;
}

.info-icon {
  float: right;
  width: 50px;
  height: 50px;
  margin: 4px;
}

.block-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.title-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.promo-banner {
    max-width: 950px;
    margin: 10px auto;
	padding: 0 5px;
}

.promo-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* HEADER */
.header {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  font-weight: 750;
  font-size: 20px;
}

/* HERO */
.hero {
  padding: 10px 0;
  background: linear-gradient(
    135deg,
    #0f2027,
    #203a43,
    #2c5364
  );
  color: #fff;
}

.hero__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.hero__text {
    max-width: 620px;
}

.hero__image img {
    width: 163px;
    height: 300px;
    display: block;
	margin-right: 10px;
	border: 1px solid #A9B6CC;
	border-radius: 4px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 18px;
  margin-bottom: 24px;
  color: #d0d0d0;
}

/* TEXT */
h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 12px;
}

.note {
  font-size: 14px;
  color: #666;
}

.snippet-accent {
    font-size: 1.08em;
    line-height: 1.5;
    color: #1D3F6D;
	margin-bottom: 16px;
    font-weight: 600;
}

.snippet-accent2 {
    font-size: 1.08em;
    line-height: 1.5;
    color: #9B3533;
	margin-bottom: 16px;
    font-weight: 600;
}

/* LISTS */
.list li,
.steps li {
  margin-bottom: 8px;
  margin-left: 30px;
}

ol {
  margin-bottom: 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn--primary {
  background: #0056AD;
  color: #fff;
  margin-right: 12px;
  padding: 12px 17px;
}

.btn---primary {
  background: #0056AD;
  color: #fff;
  margin-right: 13px;
}

.btn--accent {
  background: #176324;
  color: #fff;
  white-space: nowrap;
  border: 1px solid #fff;
}

.btn--large {
  padding: 14px 28px;
  font-size: 18px;
}

/* FOOTER */
.footer {
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  h2 {
    font-size: 22px;
  }
  .title-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero__image img {
	width: 300px;
    height: auto;
    margin: 0 auto;
  }
}

@media (max-width: 360px) {
    .hero__image img {
        max-width: 100%;
    }
}