
/* Section Styling */
.shn-dentalskin-section {
  padding: 40px;
  background-color: #f9f9f9;
}

.shn-dentalskin-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: nowrap;
  flex-direction: row;
}

/* Description Block */
.shn-dentalskin-description {
  flex: 1;
  min-width: 300px;
}

.shn-dentalskin-description p {
  font-size: 1em;
  color: #000;
  line-height: 1.6;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Service Box */
.shn-dentalskin-box {
  flex: 1;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-width: 280px;
  text-align: center;
}

.shn-dentalskin-box img {
  width: 100%;
  border-radius: 6px;
}

.shn-dentalskin-box h3 {
  color: #2c3e50;
  margin-top: 15px;
}

.shn-dentalskin-box p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .shn-dentalskin-container {
    flex-direction: column;
    align-items: center;
  }

  .shn-dentalskin-description,
  .shn-dentalskin-box {
    width: 100%;
    max-width: 500px;
  }

  .shn-dentalskin-section {
    padding: 20px;
  }
}
