/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.section-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.view-all-btn {
  color: #e74c3c;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.view-all-btn:hover {
  color: #000000;
}

/* Personal Info */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-item {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}cd 

.info-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.info-value {
  font-size: 1.05rem;
  color: #1e293b;
  font-weight: 600;
}

/* Preferences */
.preferences-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.preference-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 12px;
}

.preference-info h4 {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.preference-info p {
  color: #64748b;
  font-size: 0.875rem;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 32px;
  background: #cbd5e1;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.toggle-switch.active {
  background: #22c55e;
}

.toggle-switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s;
}

.toggle-switch.active::after {
  left: 32px;
}
