.page-header {
  text-align: center;
  margin-bottom: 5rem;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-description {
  font-size: 1.2rem;
  opacity: 0.8;
}

.profile-section {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}

.profile-card {
  width: 100%;
  max-width: 1000px;
  padding: 5rem 3rem;
}

.profile-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.profile-image-container {
  flex-shrink: 0;
}

.profile-avatar {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
  background: var(--nav-bg);
  border: 1px solid var(--glass-border);
}

.profile-text h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.profile-role {
  font-size: 1.2rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 2rem;
}

.profile-bio {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skills-section {
  margin-bottom: 5rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--accent-color);
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.skill-card {
  padding: 3rem 2.5rem;
  text-align: center;
}

.skill-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.skill-card p {
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .profile-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .profile-avatar {
    width: 180px;
    height: 180px;
  }
}
