.form-group {
  margin: 12px 0;
}

.form-group label {
  margin: 8px 0;
}

/* Contact Info List */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-icon {
  font-size: 24px;
}

.info-item h4 {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.info-item p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* Select Form Style */
.select-form {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #fff;
  transition: var(--transition);
  font-family: inherit;
  font-size: 15px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 15px;
}

.select-form:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237d5fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.select-form option {
  background: var(--bg-deep);
  color: #fff;
  padding: 15px;
}