/* Bottom CTA Section */
.bottom-cta-section {
  width: 100%;
  /*margin-top: 20px; /* ensures spacing from achievements */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #020202;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.bottom-cta-container {
  max-width: 1300px;
  text-align: center;
  color: #f2f2f2;
}

.bottom-cta-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.bottom-cta-subtext {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.bottom-cta-button {
  padding: 16px 36px;
  background: linear-gradient(to right, #ff00cc, #3333ff);
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.bottom-cta-button:hover {
  background: linear-gradient(to right, #ff33cc, #0000ff);
  box-shadow: 0 0 12px rgba(255, 0, 204, 0.4);
}

/* Responsive Styling */
@media (max-width: 768px) {
  .bottom-cta-heading {
    font-size: 2rem;
  }

  .bottom-cta-subtext {
    font-size: 1rem;
    padding: 0 10px;
  }

  .bottom-cta-button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }
}
