.contact-main-container {
  width: 100%;
  margin: 30px auto;
  margin-bottom: 20px;
  padding: 0 20px;
  max-width: 1050px;
}

.contact-header {
  margin-bottom: 16px;
}

.contact-title {
  color: #101828;
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 650;
  line-height: 36px;
}

.contact-subtitle {
  color: #4a5565;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 24px;
  align-items: start;
}

/* Form Styles */
.contact-form-container {
  max-width: 800px;
  border-radius: 10px;
  border: 0.8px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 32.8px 32.8px 32.8px 32.8px;
}

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

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

.form-label {
  color: #364153;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #1f2937;
  transition: all 0.2s;
  border: none;
  line-height: 24px;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #364aff;
  box-shadow: 0 0 0 3px rgba(54, 74, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

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

.form-submit-button {
  padding: 16px 24px;
  background: #101828;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
  text-align: center;
  font-style: normal;
  font-weight: 550;
  line-height: 24px;
}

.form-submit-button:hover {
  background: #0f0f1e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-note {
  color: #6a7282;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 0;
}

/* Support Info Styles */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.support-card {
  display: flex;
  padding: 24.8px;
  flex-direction: row;
  align-items: flex-start;
  border-radius: 10px;
  border: 0.8px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.support-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.support-icon {
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 36px;
}

.support-content {
  flex: 1;
}

.support-label {
  color: #101828;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  margin-bottom: 4px;
}

.support-value {
  color: #364aff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  margin: 0;
}

.support-value:hover {
  text-decoration: underline;
}

.support-description {
  color: #6a7282;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  margin-top: 4px;
}

/* Quick Links */
.quick-links-title {
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.quick-links-list a {
  color: #364aff;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.quick-links-list a:hover {
  text-decoration: underline;
  transform: translateX(4px);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 32px 0;
  margin: 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #364aff;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.trust-badge-icon {
  width: 24px;
  height: 24px;
  color: #364aff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-sidebar {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .contact-main-container {
    margin: 20px auto;
  }

  .contact-title {
    font-size: 36px;
    line-height: 44px;
  }

  .contact-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 28px;
    line-height: 36px;
  }
}
