* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
}

/* HERO SECTION */
.creative-hero {
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.creative-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.creative-text h6 {
  color: #888;
  font-size: 16px;
  margin-bottom: 10px;
}

.creative-text h1 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
}

.highlight {
  color: #ff7bfa;
}

.creative-text p {
  width: 90%;
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}

.creative-btn {
  background: linear-gradient(45deg, #ffa07a, #ff7bfa);
  padding: 12px 26px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.creative-img img {
  width: 430px;
  border-radius: 10px;
}

/* Circle Background */
.circle-bg {
  position: absolute;
  right: -200px;
  bottom: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,146,250,0.4), rgba(255,146,250,0));
  border-radius: 50%;
  z-index: -1;
}

/* FEATURES */
.creative-features {
  margin-top: 60px;
  padding: 50px 5%;
  text-align: center;
}

.creative-features h2 {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 700;
}

.creative-features span {
  color: #ff7bfa;
}

.features-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 20px;
}

.feature-box {
  width: 320px;
  padding: 25px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.05);
  text-align: center;
}

.feature-box img {
  width: 60px;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-box p {
  color: #666;
  font-size: 15px;
}


/* BENEFITS SECTION */
.creative-benefits {
  padding: 70px 5%;
  background: #faf7ff;
}

.benefit-box {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-bottom: 25px;
}

.benefit-box img {
  width: 70px;
  margin-bottom: 15px;
}

/* COURSES SECTION */
.creative-courses {
  padding: 70px 5%;
}

.course-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
  margin-bottom: 25px;
}

.course-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* TESTIMONIAL SECTION */
.creative-testimonials {
  padding: 70px 5%;
  background: #fafafa;
}

.testimonials-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-box {
  width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
}
