/* Circle of Care - Custom Landing Page Styles */

.landing-section {
  margin-bottom: 60px;
  padding-top: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
  color: #333;
  font-weight: 600;
}

.landing-intro {
  background-color: #f8f9fa;
  border-left: 4px solid #4a90a4;
  padding: 30px;
  margin-bottom: 40px;
}

.landing-intro .lead {
  margin-bottom: 0;
  font-size: 18px;
  color: #555;
}

.commitment-list,
.expertise-list {
  list-style: none;
  padding-left: 0;
}

.commitment-list li,
.expertise-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.commitment-list li:before,
.expertise-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4a90a4;
  font-weight: bold;
}

.expertise-footer {
  margin-top: 20px;
  padding: 15px;
  background-color: #f0f7fa;
  border-radius: 4px;
  font-style: italic;
  color: #555;
}

/* Service Cards */
.service-cards {
  margin-top: 30px;
}

.service-card {
  margin-bottom: 25px;
}

.service-card-inner {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card-inner:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-color: #4a90a4;
}

.service-card-inner h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
  font-weight: 600;
}

.service-card-inner p {
  margin-bottom: 0;
  color: #666;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .landing-section {
    margin-bottom: 40px;
  }
  
  .service-card-inner {
    padding: 20px;
  }
  
  .service-card-inner h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .landing-intro {
    padding: 20px;
  }
  
  .landing-intro .lead {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 24px;
  }
}
