/* SLS Corporate Contact Form Styling */
.sls-contact-wrapper {
  max-width: 880px;
  margin: 0 auto;
  padding: 35px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sls-contact-header {
  margin-bottom: 25px;
}

.sls-contact-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #0d5c3a; /* SLS Industrial Green */
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sls-contact-header h3 {
  font-size: 26px;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.sls-contact-header p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.sls-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.sls-form-row.single-col {
  display: block;
}

.sls-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sls-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}

.sls-form-group label .req {
  color: #dc2626;
}

.sls-form-group input,
.sls-form-group select,
.sls-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.sls-form-group input:focus,
.sls-form-group select:focus,
.sls-form-group textarea:focus {
  outline: none;
  border-color: #0d5c3a;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(13, 92, 58, 0.1);
}

.sls-form-actions {
  margin-top: 25px;
  text-align: left;
}

.sls-contact-submit-btn {
  background-color: #0d5c3a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 34px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.sls-contact-submit-btn:hover {
  background-color: #083c26;
}

.sls-form-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 12px;
  color: #64748b;
}

@media (max-width: 640px) {
  .sls-contact-wrapper {
    padding: 20px 16px;
  }
  .sls-form-row {
    flex-direction: column;
    gap: 14px;
  }
  .sls-contact-submit-btn {
    width: 100%;
  }
}

/* SLS Terms of Use & Legal Pages Styling */
.sls-legal-header {
  background-color: #0f172a; /* Deep Slate Industrial */
  color: #ffffff;
  padding: 60px 0 45px 0;
  text-align: center;
}

.sls-legal-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #10b981; /* Accent Green */
  margin-bottom: 10px;
}

.sls-legal-header h1 {
  font-size: 38px;
  color: #ffffff;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.sls-legal-meta {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 15px;
}

.sls-legal-lead {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #cbd5e1;
}

.sls-legal-lead a {
  color: #10b981;
  text-decoration: underline;
}

.sls-legal-body {
  padding: 50px 0 80px 0;
  background-color: #f8fafc;
}

.sls-legal-content-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sls-legal-section {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f1f5f9;
}

.sls-legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sls-legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.sls-legal-section p {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  margin: 0 0 12px 0;
}

.sls-legal-section a {
  color: #0d5c3a;
  font-weight: 600;
  text-decoration: none;
}

.sls-legal-section a:hover {
  text-decoration: underline;
}

.sls-legal-list {
  margin: 12px 0 16px 20px;
  padding: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.7;
}

.sls-legal-list li {
  margin-bottom: 8px;
}

.sls-contact-callout {
  background-color: #f1f5f9;
  border-radius: 6px;
  padding: 24px;
}

.sls-legal-address-block p {
  margin: 4px 0;
  font-size: 14px;
  color: #1e293b;
}

@media (max-width: 768px) {
  .sls-legal-content-card {
    padding: 30px 20px;
  }
  .sls-legal-header h1 {
    font-size: 28px;
  }
  .sls-legal-lead {
    font-size: 14px;
  }
}