/* EstiMate Introduction Section Styles */
.intro-section {
  padding: 64px 40px;
  background: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-container {
  max-width: 1307px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-box {
  background: #3271cc;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  text-align: left;
}

.intro-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 78px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.intro-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #ffffff;
}

.intro-text strong {
  font-weight: 700;
}

/* Tablet Styles */
@media (max-width: 768px) {
  .intro-section {
    padding: 24px 20px;
  }

  .intro-title {
    font-size: 48px;
  }

  .intro-text {
    font-size: 24px;
    line-height: 32px;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .intro-section {
    padding: 24px 20px;
  }

  .intro-title {
    font-size: 48px;
  }

  .intro-text {
    font-size: 24px;
    line-height: 32px;
  }
}
