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

/* Introduction Section */
.Introduction {
  max-width: 1500px;
  margin: 2rem auto 2.5rem auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(58, 110, 165, 0.07);
  padding: 2.5rem 2rem;
}
.Introduction a {
  color: var(--link-color);
  text-decoration: underline;
  transition: color 0.2s;
}
.Introduction h1 {
  font-size: 2rem;
  font-family: 'Avenir Next', 'Inter', monospace;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.Introduction h2 {
  font-size: 1.2rem;
  font-family: 'Avenir Next', 'Inter', sans-serif;
  text-align: center;
  color: var(--link-color);
  margin-bottom: 1.5rem;
}
.Introduction hr {
  width: 90%;
  border: none;
  border-top: 1.5px solid var(--primary-color);
  margin: 1.5rem auto;
}
.Introduction p {
  font-size: 18px;
  font-family: 'Avenir Next', 'Inter', sans-serif;
  text-align: left;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Overview Skills Section */
.Overview_Skills {
  margin: 2rem auto;
  max-width: 1500px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(58, 110, 165, 0.07);
  padding: 2rem 2rem;
}
.Overview_Skills th, td, ul {
  font-size: 18px;
  font-family: 'Avenir Next', 'Inter', sans-serif;
  text-align: center;
}
.Overview_Skills a {
  color: var(--link-color);
  text-decoration: underline;
  transition: color 0.2s;
}
.Overview_Skills a:visited {
  color: var(--secondary-color);
}
.Overview_Skills a:hover {
  color: var(--secondary-color);
}
.Overview_Skills li {
  font-size: 18px;
  font-family: 'Avenir Next', 'Inter', sans-serif;
  text-align: left;
}
.Overview_Skills td {
  font-size: 18px;
  font-family: 'Avenir Next', 'Inter', sans-serif;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 800px) {
  .Introduction, .Overview_Skills {
    padding: 1.2rem 0.7rem;
    max-width: 98vw;
  }
}
@media (max-width: 500px) {
  .Introduction, .Overview_Skills {
    padding: 0.7rem 0.2rem;
  }
}
