* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(to bottom, #e8f4f8 0%, #ffffff 100%);
  min-height: 100vh;
  padding: 20px;
}

.container {
  max-width: 540px;
  margin: 0 auto;
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Search Section */
.search-section {
  margin-bottom: 30px;
}

.search-input {
  width: 100%;
  padding: 16px 20px;
  border: none;
  background: #f5f5f5;
  border-radius: 8px;
  font-size: 15px;
  color: #666;
}

.search-input::placeholder {
  color: #999;
}

/* Main Title */
.main-title {
  font-size: 28px;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.service-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 61, 130, 0.15);
  transform: translateY(-2px);
}

.icon-circle {
  width: 56px;
  height: 56px;
  background: #003d82;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.icon {
  filter: brightness(0) invert(1);
}

.service-btn span {
  font-size: 15px;
  font-weight: 600;
  color: #0a1f44;
  text-align: left;
  line-height: 1.4;
}

/* Other Services Button */
.other-services-btn {
  width: 100%;
  padding: 16px;
  background: #003d82;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 40px;
  transition: background 0.3s ease;
}

.other-services-btn:hover {
  background: #002d5f;
}

/* Availability Section */
.availability-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 20px;
}

.input-group {
  display: flex;
  gap: 10px;
}

.location-input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  background: #f5f5f5;
  border-radius: 8px;
  font-size: 14px;
  color: #666;
}

.location-input::placeholder {
  color: #999;
}

.check-btn {
  padding: 14px 28px;
  background: #003d82;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.check-btn:hover {
  background: #002d5f;
}

.select-group {
  position: relative;
  display: flex;
  align-items: center;
}

.location-select {
  width: 100%;
  padding: 14px 50px 14px 18px;
  border: 1px solid #e5e5e5;
  background: white;
  border-radius: 8px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  appearance: none;
}

.location-icon {
  position: absolute;
  right: 15px;
  pointer-events: none;
}

/* Testimonials Section */
.testimonials-section {
  margin-top: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 480px) {
  .container {
    padding: 20px 15px;
  }

  .main-title {
    font-size: 24px;
  }

  .services-grid {
    gap: 12px;
  }

  .service-btn {
    padding: 15px;
  }

  .icon-circle {
    width: 48px;
    height: 48px;
  }

  .icon {
    width: 24px;
    height: 24px;
  }

  .service-btn span {
    font-size: 14px;
  }
}
