:root {
  --primary-color: #6f42c1;
  --secondary-color: #f8f9fa;
  --accent-color: #e9ecef;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}


.subtitle {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
}

h2 {
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
}

.service-list {
  background-color: var(--secondary-color);
  border-radius: 12px;
  padding: 25px;
  height: 100%;
}

.locations-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.location-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background-color: white;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.location-item:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.location-icon {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.9rem;
}

.mission-statement {
  background-color: #eef9ff;
  border-left: 4px solid var(--primary-color);
}

.mission-icon {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .locations-container {
    grid-template-columns: 1fr;
  }
}











.subtitle {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

h2 {
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.service-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.service-content {
    padding: 1.8rem;
}

.service-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-description {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.service-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #eee;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 0.7rem;
    font-size: 1.1rem;
}

.mission-statement {
    background-color: #eef9ff;
    border-left: 4px solid var(--primary-color);
    margin: 2.5rem 0;
}

.mission-icon {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #6f42c1;
    border-color: #6f42c1;
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-highlight {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.pricing-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}





.subtitle {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
}

h2 {
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
}

.contact-info-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.contact-icon {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1.2rem;
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #222;
}

.contact-details p {
  margin-bottom: 0;
  color: #555;
}

.contact-details a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-color);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.business-hours {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 1.8rem;
  margin-top: 2rem;
}

.hours-title {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #eee;
}

.hours-item:last-child {
  border-bottom: none;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.8rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: #6f42c1;
  border-color: #6f42c1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
