/* Contact Page Styles */
.contact-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, 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: 16px;
}

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

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

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

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

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

.contact-form h2, .contact-info h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 600;
}

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

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

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

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

.required {
  color: #ff3b30;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

.btn-primary:hover {
  background-color: #333;
  border-color: #333;
}

.info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.info-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.info-content p {
  margin: 0;
  color: #515154;
}

.info-content a {
  color: #06c;
  text-decoration: none;
}

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

/* 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%;
  }
  
  .contact-form h2, .contact-info h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 32px;
  }
  
  .contact-hero .subhead {
    font-size: 18px;
  }
  
  .info-card {
    flex-direction: column;
    gap: 15px;
  }
}