/* styles.css */

/* Import a clean, professional font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f4f7f6; /* Soft grey background */
  color: #333; /* Dark grey text for readability */
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  background-color: #ffffff; /* White background for the content */
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Subtle shadow for depth */
  border-radius: 8px; /* Rounded corners */
}

header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0; /* Light grey border */
}

header h1 {
  margin: 0;
  color: #2a3f54; /* Deep blue for the name */
}

header p {
  margin: 5px 0;
  color: #4a4a4a; /* Medium grey for contact info */
}

a {
  color: #1a73e8; /* Soft blue links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

section {
  margin: 20px 0;
}

h2 {
  color: #2a3f54; /* Consistent deep blue for headings */
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 5px;
}

h3 {
  color: #3b5998; /* Slightly lighter blue for subheadings */
}

ul {
  list-style-type: square;
  padding-left: 20px;
}

li {
  margin: 5px 0;
}

@media (max-width: 600px) {
  .container {
    margin: 20px;
    padding: 15px;
  }

  header h1 {
    font-size: 24px;
  }

  header p, a {
    font-size: 14px;
  }
}
