/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f5f7fa;
  color: #333;
  padding: 20px;
}

header {
  text-align: center;
  background-color: #0078d4;
  color: white;
  padding: 40px 20px;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
}

section {
  margin: 40px auto;
  max-width: 800px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
  margin-bottom: 15px;
  color: #0078d4;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

.social-links li {
  display: inline;
  margin-right: 20px;
}

.social-links a {
  text-decoration: none;
  color: #0078d4;
  font-weight: bold;
}

footer {
  text-align: center;
  margin-top: 40px;
  color: #666;
  font-size: 0.9rem;
}
