.get-help {
  padding: 80px 0;
  background: #e0ffff; /* Light cyan */
}

.get-help-content {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.get-help-content h3 {
  color: #2c384e;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.get-help-content p {
  color: #6f7a8d;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.get-help-options {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.option-item {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.option-item:hover {
  transform: translateY(-5px);
}

.option-item i {
  font-size: 24px;
  color: #2c384e;
  margin-bottom: 15px;
}

.option-item h4 {
  font-size: 18px;
  color: #2c384e;
  margin-bottom: 10px;
}

.option-item p {
  color: #6f7a8d;
  font-size: 14px;
  line-height: 24px;
}

.get-help-form {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.get-help-form h3 {
  color: #2c384e;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.get-help-form .form-control {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  color: #2c384e;
  transition: all 0.3s ease;
}

.get-help-form .form-control:focus {
  border-color: #2c384e;
  box-shadow: 0 0 0 0.2rem rgba(44, 56, 78, 0.25);
}

.get-help-form .form-select {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  color: #2c384e;
}

.get-help-form .form-select:focus {
  border-color: #2c384e;
  box-shadow: 0 0 0 0.2rem rgba(44, 56, 78, 0.25);
}

.get-help-form .form-group {
  margin-bottom: 20px;
}

.get-help-form button[type="submit"] {
  background-color: var(--accent-color-alt);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}

.get-help-form button[type="submit"]:hover {
  background-color: #ff8c00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.get-help-form .error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

.get-help-form .sent-message {
  color: #28a745;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

.get-help-form .loading {
  display: none;
  text-align: center;
  margin-top: 10px;
}

.get-help-form .loading:before {
  content: "Loading...";
  color: #2c384e;
}

@media (max-width: 768px) {
  .get-help-content,
  .get-help-form {
    padding: 20px;
  }
  
  .get-help-options {
    grid-template-columns: repeat(1, 1fr);
  }
}
