body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 680px;
  margin: 80px auto;
  padding: 40px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.logo img {
  max-width: 200px;
  margin-bottom: 30px;
}

h1 {
  font-size: 30px;
  margin: 20px 0;
  color: #005fa3;
  line-height: 1.3;
}

h2 {
  font-size: 24px;
  margin: 20px 0;
  color: #0078d7;
}

p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  background: #0078d7;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #005fa3;
  transform: translateY(-2px);
}

footer {
  margin-top: 50px;
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

footer a {
  color: #555;
  text-decoration: none;
  margin: 0 8px;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    margin: 50px 20px;
    padding: 30px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  .btn {
    font-size: 16px;
    padding: 16px 32px;
  }
}