/* Contact Page Styles */
.contact-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #1d1d1f;
  line-height: 1.5;
}

.contact-hero {
  padding: 80px 0 40px;
  text-align: center;
  background-color: #f5f5f7;
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-hero .subhead {
  font-size: 24px;
  color: #86868b;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  padding: 60px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-grid {
  display: flex;
  gap: 60px;
}

.contact-form {
  flex: 1;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background-color: #f5f5f7;
  border-radius: 12px;
  padding: 30px;
}

.info-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}

.info-card p, .info-card address {
  margin: 8px 0;
  font-style: normal;
}

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

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-size: 16px;
}

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

.btn-submit {
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #004a99;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 0 30px;
  }
  
  .contact-hero h1 {
    font-size: 36px;
  }
  
  .contact-hero .subhead {
    font-size: 20px;
  }
  
  .contact-grid {
    flex-direction: column;
    gap: 40px;
  }
  
  .contact-form,
  .contact-info {
    width: 100%;
  }
}