.profile-page {
  background: #e6fbe6;
  padding: 60px 0;
}

.profile-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.profile-container h1 {
  text-align: center;
  margin-bottom: 30px;
}

.profile-card {
  background: #d9f5d9;
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.profile-avatar img {
  width: 100%;
  border-radius: 12px;
}

.profile-form input,
.profile-form select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  margin-bottom: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-section {
  margin: 16px 0;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.profile-form label {
  font-size: 14px;
}

.profile-form button {
  margin-top: 20px;
}
