
/* Get Started Section */
.get-started-section {
  padding: 5rem 0;
}

.get-started-container {
  max-width: 900px;
  margin: 0 auto 25px;
  background-color: white;
  padding: 3rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.get-started-container h1 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
}

.get-started-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark);
}

.get-started-container h3 {
  color: var(--primary);
  margin: 1.5rem 0 1rem;
}

.get-started-container ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.get-started-container ol li {
  margin-bottom: 0.5rem;
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.signature-container {
  margin-bottom: 1.5rem;
}

#signature-pad {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  width: 100%;
  background-color: #f8fafc;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.checkbox-group input {
  margin-right: 0.5rem;
}

.checkbox-group label {
  margin-bottom: 0;
}

/* Updated Agreement Container Styles */
.agreement-container {
  margin: 2.5rem 0;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  background-color: #f8fafc;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.agreement-container h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.agreement-text {
  padding: 1rem;
  max-height: 300px;
  overflow-y: auto;
  background-color: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.9375rem;
  color: #334155;
  white-space: pre-line;
}

/* Custom scrollbar for agreement text */
.agreement-text::-webkit-scrollbar {
  width: 6px;
}

.agreement-text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.agreement-text::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.agreement-text::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Section headings in agreement */
.agreement-text strong {
  display: block;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 600;
}

/* List items in agreement */
.agreement-text ol {
  margin-left: 1.25rem;
  padding-left: 0;
}

.agreement-text li {
  margin-bottom: 0.5rem;
  position: relative;
  list-style-position: outside;
}

/* Checkbox group styling */
.agreement-container .checkbox-group {
  background-color: white;
  padding: 1rem;
  border-radius: 0.375rem;
  border: 1px solid #e2e8f0;
  margin: 1.5rem 0 0;
}

.agreement-container .checkbox-group input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 1rem;
  height: 1rem;
}

.agreement-container .checkbox-group label {
  font-size: 0.9375rem;
  color: #334155;
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  
  .get-started-container {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .agreement-text {
    max-height: 250px;
    font-size: 0.875rem;
  }
  
  .agreement-container {
    padding: 1.25rem;
  }
}

@media (max-width: 576px) {
  
  .get-started-container {
    padding: 1.5rem;
  }
  
  .agreement-text {
    max-height: 200px;
    padding: 0.75rem;
  }
  
  .agreement-container {
    padding: 1rem;
  }
  
  .agreement-container h3 {
    font-size: 1.125rem;
  }
}