/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body background and font */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Navigation styling */
nav {
  background-color: #333;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00bcd4;
}

/* Intro section */
#intro {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e0f7fa;
  padding: 40px 20px;
  text-align: center;
  flex-wrap: wrap;
}

.profile-pic {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 10px 20px;
  border: 4px solid #00bcd4;
  object-fit: cover;
}

.intro-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.intro-text h3 span {
  color: #00796b;
}

.intro-text h2 {
  font-size: 32px;
  color: #333;
}

.intro-text h2 span {
  color: #e91e63;
}

/* Sections */
section {
  padding: 40px 20px;
  background-color: #fff;
  margin-bottom: 20px;
  border-left: 6px solid #00bcd4;
  border-radius: 5px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

section h2 {
  color: #00796b;
  margin-bottom: 10px;
}

section ul {
  list-style-type: square;
  padding-left: 20px;
}

section ul li {
  margin-bottom: 8px;
}

/* Contact section */
#contact a {
  color: #00796b;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background-color: #333;
  color: white;
}