.business {
  background-color: #fff;
  position: relative;
}

.business-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

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

.business-icon {
  width: 80px;
  height: 80px;
  margin: 2rem auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 102, 112, 0.1) 0%, rgba(166, 151, 123, 0.1) 100%);
  color: #4a6670;
  font-size: 2rem;
}

.business-content {
  padding: 1.5rem 2rem 2rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.business-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #4a6670;
}

.business-description {
  color: #5a6e72;
  line-height: 1.6;
  flex-grow: 1;
}

.business-link {
  margin-top: 1.5rem;
  display: inline-block;
  color: #4a6670;
  font-weight: 600;
  transition: all 0.3s ease;
}

.business-link:hover {
  color: #a6977b;
}

.business-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.business-link:hover i {
  transform: translateX(5px);
}

.business-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path fill="%23a6977b" fill-opacity="0.05" d="M0,0 L200,0 L200,200 L0,200 L0,0 Z M100,100 L120,80 L140,100 L120,120 L100,100 Z M60,60 L80,40 L100,60 L80,80 L60,60 Z M140,60 L160,40 L180,60 L160,80 L140,60 Z M60,140 L80,120 L100,140 L80,160 L60,140 Z M140,140 L160,120 L180,140 L160,160 L140,140 Z"></path></svg>');
  z-index: -1;
}

.decoration-top-right {
  top: 0;
  right: 0;
}

.decoration-bottom-left {
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}

.business-details {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #f5f9fa;
  border-radius: 10px;
  border-left: 4px solid #4a6670;
}

.business-details-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4a6670;
  margin-bottom: 1rem;
}

.business-details-list {
  list-style-type: none;
  padding-left: 0;
}

.business-details-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.business-details-icon {
  color: #4a6670;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.business-details-text {
  color: #5a6e72;
  line-height: 1.5;
}

.business-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .business-card {
    margin-bottom: 2rem;
  }
}
