body {
  margin: 0;
  padding: 0;
  background-color: #fffdfd;
}

.inspiration-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.inspiration-header {
  text-align: center;
  margin-bottom: 50px;
}

.inspiration-header h1 {
  color: #db7093;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.inspiration-subtitle {
  font-size: 1.1rem;
  color: #7a7a7a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.inspiration-title {
  color: #db7093;
  font-size: 1.6rem;
  border-bottom: 2px dashed #ffb6c1;
  padding-bottom: 12px;
  margin-top: 50px;
  margin-bottom: 30px;
}

.figures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.profile-card {
  background: #ffffff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(255, 182, 193, 0.05);
}

.profile-card h3 {
  color: #4a4a4a;
  margin: 15px 0 10px 0;
}

.profile-card p {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.5;
}

.cloud-avatar-box {
  display: inline-block;
  margin-bottom: 10px;
}

.cloud-avatar-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  padding: 10px;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 60%;
  border: 3px dashed #ffb6c1;
  background-color: rgba(255, 255, 255, 0.9);
  animation: floatInspirationCloud 5s ease-in-out infinite;
}

.trends-intro {
  color: #666666;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.trends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 25px;
}

@media (max-width: 600px) {
  .trends-grid {
    grid-template-columns: 1fr;
  }
}

.trend-card {
  background-color: #fff9fa;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #ffb6c1;
}

.trend-card h3 {
  margin-top: 0;
  color: #db7093;
}

.trend-card p {
  color: #555555;
  line-height: 1.6;
  margin-bottom: 0;
}

@keyframes floatInspirationCloud {
  0% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}


