@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.mock-cta-container {
  margin: 40px 0;
  font-family: 'Poppins', sans-serif;
}

.mock-cta-card {
  display: flex;
  flex-wrap: wrap;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.mock-cta-left,
.mock-cta-right {
  flex: 1 1 300px;
  padding: 30px;
}

.mock-cta-left {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.mock-cta-left h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mock-cta-left p {
  font-size: 16px;
  margin-bottom: 24px;
  opacity: 0.95;
}

.mock-cta-left ul {
  list-style: none;
  padding: 0;
}

.mock-cta-left ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.mock-cta-right h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.mock-cta-right p {
  margin-bottom: 20px;
  color: #444;
  font-size: 16px;
}

.mock-cta-right a {
  display: inline-block;
  background: #0b9449; /* Darker green */
  color: white !important;
  padding: 16px 30px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.mock-cta-right a:hover {
  background: #08753a;
  transform: scale(1.03);
}

.price {
  font-size: 16px;
  margin-top: 20px;
}

.line-through {
  text-decoration: line-through;
  color: #888;
}

.highlight {
  color: #4338ca;
  font-weight: 600;
}

@media (max-width: 768px) {
  .mock-cta-left,
  .mock-cta-right {
    padding: 20px;
  }

  .mock-cta-left h1 {
    font-size: 22px;
  }

  .mock-cta-right h2 {
    font-size: 20px;
  }

  .mock-cta-right a {
    width: 100%;
  }
}
