/* General Styles */
body {
  background-color: crimson;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: whitesmoke;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #8b0000;
}

h1 {
  margin: 0;
  font-size: 2rem;
}

/* Navigation */
.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.sidebar a {
  color: black;
  background-color: whitesmoke;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.sidebar a:hover {
  background-color: #ddd;
}

/* Main Content */
.content {
  padding: 2rem;
}

/* About Section Layout */
.about-container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Image Styling */
.profile-image img {
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Text Content */
.about-details {
  max-width: 600px;
  background-color: whitesmoke;
  color: black;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.about-details h2 {
  margin-top: 0;
  color: #8b0000;
}

.about-details p {
  line-height: 1.6;
}

/* Skills List */
.skills-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.skills-list li {
  margin-bottom: 0.5rem;
}
