/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  padding: 20px;
}

/* Header Styling */
header {
  background: #fff; /* White background */
  color: #000; /* Black text */
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
}

header nav ul {
  list-style: none;
  padding: 0;
}

header nav ul li {
  display: inline;
  margin: 0 10px;
}

header nav ul li a {
  color: #000; /* Black text */
  text-decoration: none;
}

header nav ul li a:hover {
  text-decoration: underline;
}

/* Section Styling */
.section {
  margin: 20px 0;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
  margin-bottom: 10px;
}

/* Footer Styling */
footer {
  background: #fff; /* White background */
  color: #000; /* Black text */
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
}

.profile-container {
  display: flex;
  align-items: center;
}

.profile-text {
  margin-right: 10px; /* Reduced margin */
  padding: 0; /* Removed padding */
}

.profile-text h2, .profile-text p {
  margin: 5px 0; /* Reduced margin for text elements */
}

.profile-container img {
  margin-left: 10px; /* Add margin to the left of the image */
  margin-right: 10px; /* Add margin to the right of the image */
}