/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333333;
  line-height: 1.9;
  font-size: 18px;
}

/* Header */
header {
  background-color: #1a1a2e;
  color: #ffffff;
  text-align: center;
  padding: 3rem 1rem;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

header p {
  font-size: 1.4rem;
  opacity: 0.9;
}

/* Main Area */
main {
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: auto;
}

/* Generic Section Style */
section {
  background-color: #ffffff;
  padding: 2rem;
  margin-bottom: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Section Headings */
h2 {
  color: #e94560;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

/* About Section */
.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.profile-pic {
  width: 260px;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Paragraph Styling Inside About */
.info p {
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Education Section */
.education ul {
  list-style-type: square;
  padding-left: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Hobbies Section */
.hobbies p {
  font-size: 1.15rem;
  text-align: center;
  line-height: 1.8;
}

/* Contact Section */
.contact p {
  margin: 0.5rem 0;
  font-size: 1.15rem;
  text-align: center;
}

/* Links */
a {
  color: #e94560;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: underline;
}

/* Responsive for Mobile */
@media (max-width: 600px) {
  body {
    font-size: 17px;
  }

  .profile-pic {
    width: 200px;
  }

  header h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}
