body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.main-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.15);
  padding: 32px 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
}

.image1 img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffd43b;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
  margin-bottom: 18px;
}

.name1 h2 {
  margin: 0;
  font-size: 2rem;
  color: #232526;
  font-weight: 700;
  letter-spacing: 1px;
}

.profess h4 {
  margin: 8px 0 0 0;
  font-size: 1.1rem;
  color: #ffd43b;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.bioDAta p {
  margin: 18px 0 24px 0;
  font-size: 1rem;
  color: #414345;
  line-height: 1.6;
}

.btn {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 10px;
}

.btn i {
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
}

.btn i:hover {
  color: #232526;
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 600px) {
    body,
    .main-header {
        min-height: 100vh;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main-section {
        padding: 18px 10px;
        max-width: 95vw;
    }
    .image1 img {
        width: 200px;
        height: 200px;
        margin-bottom: 12px;
    }
    .name1 h2 {
        font-size: 1.3rem;
    }
    .profess h4 {
        font-size: 1rem;
    }
    .bioDAta p {
        font-size: 0.95rem;
        margin: 12px 0 18px 0;
    }
    .btn {
        gap: 18px;
    }
    .btn i {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    body,
    .main-header {
        min-height: 100vh;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main-section {
        padding: 10px 2vw;
        border-radius: 10px;
    }
    .image1 img {
        width: 150px;
        height: 150px;
    }
    .name1 h2 {
        font-size: 1rem;
    }
}
