/* static/css/practice-area.css */
/* Value Proposition Styling */
.value-proposition {
  border-left: 4px solid #0d6efd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Timeline Styling */
.timeline-event {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid #dee2e6;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
.timeline-marker {
  position: absolute;
  left: -8px;
  width: 15px;
  height: 15px;
  background-color: #0d6efd;
  border-radius: 50%;
}

.timeline-content {
  padding: 10px 0;
}

/* How To Styling */
.how-to-step {
  position: relative;
  padding: 15px;
  border-radius: 5px;
  background-color: #f8f9fa;
  margin-bottom: 15px;
}

.step-number {
  display: inline-block;
  margin-right: 10px;
}

/* Callout Styling */
.callout {
  position: relative;
}

.callout-info {
  background-color: #e6f2ff;
  border-left: 4px solid #0d6efd;
}

.callout-warning {
  background-color: #fff8e6;
  border-left: 4px solid #ffc107;
}

.callout-success {
  background-color: #e6fff2;
  border-left: 4px solid #198754;
}

.callout-danger {
  background-color: #ffe6e6;
  border-left: 4px solid #dc3545;
}

/* Mobile Form Container */
#mobile-form-container {
  margin-top: 30px;
  border-top: 1px solid #dee2e6;
  padding-top: 30px;
}

/* Sticky Form on Desktop */
@media (min-width: 992px) {
  .sticky-form-wrapper {
    position: sticky;
    top: 20px;
  }
}

/* FAQ Styling */
.accordion-button:not(.collapsed) {
  background-color: #e7f1ff;
  color: #0d6efd;
}

/* Featured Firms Styling */
.star-rating {
  color: #6c757d;
}

/* Child Practice Areas */
.child-practice-areas .card {
  transition: transform 0.3s ease;
}

.child-practice-areas .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Solicitor CTA */
.solicitor-cta {
  border-left: 4px solid #6c757d;
}
