/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #f0f4f8, #dfe9f3);
  color: #333;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  background-color: #007acc;
  color: white;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.profile-pic {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.name-highlight {
  color: #f4d03f; /* bright yellow-gold for visibility */
  font-size: 2.2rem;
  margin-top: 10px;
}

/* Section Titles */
h2 {
  margin-top: 25px;
  color: #2c3e50;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1px;
  /* Removed underline (border-bottom) */
}

/* Sections */
section {
  margin-bottom: 30px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

/* Lists */
ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 10px;
}

/* Links & Buttons */
a {
  color: #e67e22;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #d35400;
}

button {
  background-color: #e67e22;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  margin-top: 10px;
}

button:hover {
  background-color: #d35400;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
}

input, textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px 10px;
  background-color: #007acc;
  color: white;
  border-radius: 10px;
}
