.performance {
  background: linear-gradient(135deg, #0056ff, #6a0dad);
  color: #ffffff;
  padding: 80px 20px;
}

.performance .container {
  max-width: 1200px;
  margin: 0 auto;
}

.performance-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap-reverse;
}

.performance-text {
  flex: 1;
  max-width: 600px;
}

.performance-text h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.performance-text p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 30px;
}

.features-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-list li::before {
  content: "✔";
  color: #ffcc00;
  font-weight: bold;
  margin-right: 10px;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #0056ff;
  background-color: #ffcc00;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: #ffaa00;
  transform: translateY(-2px);
}

.performance-image {
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.performance-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .performance-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .performance-text {
    max-width: 100%;
    text-align: center;
  }

  .features-list {
    text-align: center;
    margin: 20px auto;
  }

  .performance-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .performance-text h2 {
    font-size: 2.5rem;
  }

  .performance-text p,
  .features-list {
    font-size: 1.4rem;
  }

  .cta-button {
    font-size: 1.2rem;
  }
}
