
.page-header {
  padding: 200px 0 60px;
  background: linear-gradient(to bottom, #000, #111827);
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-description {
  font-size: 20px;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact section styles */
.contact-section {
  background: linear-gradient(to bottom, #000, #111827);
  padding-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 30px;
}

/* Form styles */
.contact-form-container {
  padding: 40px;
}

.form-title,
.info-title,
.social-title,
.quote-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #fff;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #d1d5db;
}

.required {
  color: #f43f5e;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 4px;
  color: #d1d5db;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #22d3ee;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

/* Contact info styles */
.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info {
  padding: 40px;
}

.info-item {
  display: flex;
  margin-bottom: 24px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  margin-right: 16px;
  color: #22d3ee;
}

.info-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.info-content p {
  color: #9ca3af;
}

/* Social media styles */
.social-media {
  padding: 40px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1f2937;
  color: #d1d5db;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
  background-color: #22d3ee;
  color: #000;
  transform: translateY(-3px);
}

/* Quote section styles */
.quote-section {
  background: linear-gradient(to bottom, #111827, #000);
  padding-bottom: 80px;
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
}

.quote-description {
  color: #9ca3af;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 36px;
  }
  
  .page-description {
    font-size: 18px;
  }
  
  .contact-form-container,
  .contact-info,
  .social-media,
  .quote-container {
    padding: 24px;
  }
}

