/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Main Container */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

h1 {
  margin: 0 0 10px 0;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.subtitle {
  margin: 0 0 20px 0;
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

.bio {
  margin: 0 0 30px 0;
  font-size: 1rem;
  color: #555;
}

/* Contact Section */
.contact-section {
  margin: 30px 0;
  text-align: center;
}

.contact-section p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.contact-section a {
  color: #0066cc;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
  border: none;
  padding: 0;
}

.social-links a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0066cc;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.social-links a:hover {
  background-color: #0052a3;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .container {
    padding: 15px;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}
