body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f7f8fa;
  color: #222;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 950px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 40px;
}

header {
  text-align: center;
  margin-bottom: 32px;
}

h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2a4d69;
}

.contact {
  font-size: 1rem;
  color: #4f5d75;
  margin-bottom: 8px;
}

.contact a {
  color: #1b98e0;
  text-decoration: none;
  margin: 0 8px;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1b98e0;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul ul {
  list-style: disc inside;
  margin-top: 6px;
  margin-bottom: 6px;
}

li {
  margin-bottom: 14px;
  line-height: 1.6;
}

strong {
  color: #2a4d69;
}

.divider {
  border-bottom: 1px solid #e0e4ea;
  margin: 28px 0;
}

.btn {
  display: inline-block;
  background: #1b98e0;
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 24px;
  transition: background 0.2s;
}

.btn:hover {
  background: #176ca7;
}

span {
  color: #4f5d75;
}

@media (max-width: 600px) {
  .container {
    padding: 16px 8px;
  }
  h1 {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.1rem;
  }
}
