/* Speech Bubble Styles */
.speech-bubble-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-color: #f8fafc;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 250px auto;
}

.speech-bubble-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.speech-bubble-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 80px;
}

.speech-bubble {
  position: relative;
  background-color: white;
  border-radius: 30px;
  padding: 2.5rem 3rem;
  max-width: 800px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 3px solid #333;
  transform: rotate(-1deg);
  z-index: 2;
}

.speech-bubble::before {
  content: "";
  position: absolute;
  bottom: -23px!important;
  left: 80px;
  width: 40px;
  height: 40px;
  background-color: white;
  border-right: 3px solid #333;
  border-bottom: 3px solid #333;
  transform: rotate(45deg);
  z-index: 1;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 60px;
  width: 25px;
  height: 25px;
  background-color: white;
  border-radius: 50%;
  border: 3px solid #333;
  z-index: 0;
}

.speech-bubble-content {
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', cursive;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
}

.speech-bubble-content p {
  margin-bottom: 1.25rem;
}

.speech-bubble-content p:last-child {
  margin-bottom: 0;
}

.speech-bubble-content p:first-child {
  color: #5d5dff;
  font-weight: 700;
  font-size: 1.4rem;
}

.speech-bubble-content strong {
  font-weight: 700;
  color: #5d5dff;
}

.speech-bubble-content .emoji {
  font-size: 1.5rem;
  vertical-align: middle;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .speech-bubble-section {
    padding: 4rem 0 8rem;
    background-size: 180px auto;
  }
  
  .speech-bubble-wrapper {
    padding-left: 20px;
  }
  
  .speech-bubble {
    padding: 1.5rem 2rem;
    margin-left: 0;
  }
  
  .speech-bubble-content {
    font-size: 1.125rem;
  }
  
  .speech-bubble-content p:first-child {
    font-size: 1.25rem;
  }
  
  .speech-bubble::before {
    left: 50px;
    width: 30px;
    height: 30px;
  }
  
  .speech-bubble::after {
    left: 30px;
    width: 20px;
    height: 20px;
  }
}
