/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
}

/* Header */
.site-header {
  background-color: #0056b3;
  color: #fff;
  padding: 20px 0;
}
.site-header .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header h1 {
  font-size: 24px;
}
.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.site-header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.site-header nav a:hover {
  text-decoration: underline;
}

/* Main Content */
.content {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.content h2 {
  text-align: center;
  color: #0056b3;
  margin-bottom: 20px;
}
.content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}
.content p {
  font-size: 1.1rem;
  text-align: justify;
}

/* Solution Section */
.solution {
  margin-top: 40px;
  padding: 20px;
  background-color: #e6f2ff;
  border-left: 5px solid #0073e6;
  border-radius: 10px;
}
.solution h3 {
  margin-bottom: 15px;
  color: #0073e6;
}
.solution ul {
  list-style: none;
  padding-left: 0;
}
.solution li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.solution li i {
  margin-right: 10px;
  color: #0073e6;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #0073e6;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}
.cta-button:hover {
  background-color: #005bb5;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #f1f1f1;
  font-size: 0.9rem;
  color: #777;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 600px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}
