@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f5f5f5;
  color: #212121;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

header {
  width: 100%;
  text-align: center;
  padding: 40px 20px 20px 20px;
  box-sizing: border-box;
}

.logo {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

main {
  background: white;
  max-width: 700px;
  margin: 20px;
  padding: 24px 32px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #616161;
  margin-top: 8px;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #424242;
  margin-top: 32px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 8px;
}

p {
  line-height: 1.6;
  font-size: 1rem;
  color: #424242;
  margin: 16px 0;
}

footer {
  margin-top: auto;
  padding: 20px;
  font-size: 0.9rem;
  color: #757575;
  text-align: center;
}

a {
  color: #673ab7; /* Deep Purple */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}