.contact-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--clr-bg-light-2);
}

.contact-container {
  background: var(--clr-bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
}

.contact-container h1 {
  color: var(--clr-primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--clr-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
}

.error-message {
  color: #dc3545;
  font-size: 0.9rem;
  text-align: center;
  margin: 0.5rem 0;
  padding: 0.5rem;
  border-radius: 4px;
  background-color: rgba(220, 53, 69, 0.1);
}

.success-message {
  color: #28a745;
  font-size: 0.9rem;
  text-align: center;
  margin: 0.5rem 0;
  padding: 0.5rem;
  border-radius: 4px;
  background-color: rgba(40, 167, 69, 0.1);
}

.contact-btn {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  background: var(--clr-primary);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-btn:hover {
  background: #0a2234;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .contact-container {
    padding: 2rem;
  }
  
  .contact-container h1 {
    font-size: 1.5rem;
  }
} 