```css
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
}

body {
  background-color: #1e1e24;
  color: white;
  font-size: 0.9rem;
}

.container {
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 15px;
}

/* Form Styles */
.section {
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.section h2 {
  color: #f0f0f0;
  margin-bottom: 20px;
  font-size: 1.8rem;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #d0d0d0;
}

input[type="text"],
input[type="tel"],
textarea {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #333;
  background-color: #2a2a2a;
  color: #e0e0e0;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input[type="submit"] {
  padding: 12px 20px;
  background-color: #333;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s;
  margin-top: 10px;
}

input[type="submit"]:hover {
  background-color: #444;
}