.sound-healing {
  background-color: #f5f9fa;
  position: relative;
  overflow: hidden;
}

.sound-healing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23a6977b" fill-opacity="0.05" d="M50,30 C55.5,30 60,34.5 60,40 C60,45.5 55.5,50 50,50 C44.5,50 40,45.5 40,40 C40,34.5 44.5,30 50,30 Z M50,0 C55.5,0 60,4.5 60,10 C60,15.5 55.5,20 50,20 C44.5,20 40,15.5 40,10 C40,4.5 44.5,0 50,0 Z M50,60 C55.5,60 60,64.5 60,70 C60,75.5 55.5,80 50,80 C44.5,80 40,75.5 40,70 C40,64.5 44.5,60 50,60 Z M20,30 C25.5,30 30,34.5 30,40 C30,45.5 25.5,50 20,50 C14.5,50 10,45.5 10,40 C10,34.5 14.5,30 20,30 Z M80,30 C85.5,30 90,34.5 90,40 C90,45.5 85.5,50 80,50 C74.5,50 70,45.5 70,40 C70,34.5 74.5,30 80,30 Z"></path></svg>');
  opacity: 0.2;
}

.sound-healing-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #5a6e72;
  font-size: 1.1rem;
  line-height: 1.8;
}

.techniques-section {
  position: relative;
  padding: 3rem 0;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  margin-bottom: 4rem;
  box-shadow: 0 10px 30px rgba(74, 102, 112, 0.05);
}

.technique-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 3px solid #a6977b;
}

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

.technique-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a6670 0%, #a6977b 100%);
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(74, 102, 112, 0.2);
}

.technique-content {
  padding: 1.5rem;
  text-align: center;
}

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

.technique-description {
  color: #5a6e72;
  line-height: 1.6;
}

.benefits-section {
  margin-bottom: 4rem;
  position: relative;
}

.benefits-title {
  font-size: 2rem;
  color: #4a6670;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 2rem;
}

.benefits-title::before,
.benefits-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #4a6670, #a6977b);
}

.benefits-title::before {
  left: 0;
}

.benefits-title::after {
  right: 0;
}

.benefit-item {
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 3px solid #a6977b;
}

.benefit-item:hover {
  transform: translateX(10px);
  background-color: #fff;
}

.benefit-icon {
  margin-right: 1rem;
  color: #4a6670;
  font-size: 1.2rem;
}

.services-section {
  padding: 3rem;
  background: linear-gradient(135deg, rgba(74, 102, 112, 0.05) 0%, rgba(166, 151, 123, 0.05) 100%);
  border-radius: 10px;
  position: relative;
}

.services-title {
  font-size: 2rem;
  color: #4a6670;
  margin-bottom: 2rem;
  text-align: center;
}

.service-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #4a6670;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(74, 102, 112, 0.2);
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-content {
  padding: 1.5rem;
  text-align: center;
}

.service-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #4a6670;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #a6977b;
}

.service-duration {
  color: #5a6e72;
  margin-bottom: 1.5rem;
}

.cta-section {
  text-align: center;
  margin-top: 4rem;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a6977b, transparent);
}

.sound-healing-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.sound-healing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sound-healing-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.5) 100%);
}

.sound-healing-quote {
  font-family: 'Noto Serif SC', serif;
  font-style: italic;
  color: #8C4A2F;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  position: relative;
  padding: 2rem;
}

.sound-healing-quote::before,
.sound-healing-quote::after {
  content: '"';
  font-size: 3rem;
  color: rgba(140, 74, 47, 0.2);
  position: absolute;
  line-height: 1;
}

.sound-healing-quote::before {
  top: 0;
  left: 0;
}

.sound-healing-quote::after {
  bottom: -10px;
  right: 0;
}

@media (max-width: 768px) {
  .technique-card,
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .sound-healing-quote {
    font-size: 1rem;
    padding: 1.5rem;
  }
}
