body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #222;
}
header {
  background-color: #004080;
  color: white;
  padding: 1rem;
  text-align: center;
}
nav {
  margin-top: 1rem;
}
nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}
main {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 1rem;
  position: relative;
  bottom: 0;
  width: 100%;
}
.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #004080;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
}
.button:hover {
  background-color: #003060;
}

.about-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 60%;
  min-width: 250px;
}

.image-container {
  flex: 1 1 30%;
  display: flex;
  justify-content: center;
}

.profile-pic {
  max-width: 250px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.20);
  filter: grayscale(10%);
}

header h1 {
  font-size: 2.2em;
  margin-bottom: 0.3em;
}

header p {
  font-size: 1.1em;
  margin: 0;
}
