/* Contact Page Styles */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 60px;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.subheading {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  gap: 40px;
}

.contact-form-container,
.contact-info-container {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  color: #333;
}

.required {
  color: #e53935;
}

input, select, textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #0052a3;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
}

.contact-card p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.contact-card a {
  color: #0066cc;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
  
  .contact-form-container,
  .contact-info-container {
    width: 100%;
  }
  
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .subheading {
    font-size: 1rem;
  }
}