* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  background: linear-gradient(to bottom, #e4e4e5, #bebebe);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  flex-direction: column;
}

.light-bg {
  background-color: #f7f7f7;
}

/* Page 1 */
.card {
  display: flex;
  gap: 2rem;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
}

.profile-pic {
  width: 250px;
  border-radius: 20px;
  object-fit: cover;
}

.info {
  flex: 1;
  min-width: 250px;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
}

h3 {
  font-weight: bold;
  margin-bottom: 1rem;
}

p {
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.icons {
  display: flex;
  gap: 1.5rem;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.icons a {
  color: black;
  transition: color 0.3s ease;
}

.icons a:hover {
  color: #666;
}

button {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border: none;
  background-color: black;
  color: white;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

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

/* Page 2 */
.resume-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  width: 100%;
  margin-bottom: 2rem;
}

.resume-card .column {
  flex: 1;
  min-width: 300px;
}

.resume-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #111;
}

.resume-card p {
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.5;
}

.resume-card a {
  color: #000;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card, .resume-card {
    flex-direction: column;
    align-items: center;
  }

  .profile-pic {
    width: 80%;
    max-width: 300px;
  }

  .resume-card .column {
    width: 100%;
  }
}