/* RESET */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}
.cfp-wrapper {
  background: #d8f0df;
}
/* HERO */
.cfp-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #00c6ff, #7b2cbf, #f72585);
  color: #fff;
}
.cfp-hero h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.cfp-hero p {
  opacity: 0.9;
}
/* CONTAINER */
.cfp-container {
  max-width: 1100px;
  margin: -40px auto 0;
  padding: 0 15px;
}
/* CARD */
.cfp-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
/* TEXT */
.cfp-text {
  line-height: 1.8;
  color: #444;
}
.highlight {
  color: #c0392b;
}
/* SECTION BLOCK */
.cfp-section-block {
  margin-top: 30px;
}
.cfp-section-block h3 {
  margin-bottom: 15px;
  position: relative;
}
.cfp-section-block h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #f72585;
  position: absolute;
  left: 0;
  bottom: -6px;
}
/* ITEMS */
.cfp-item {
  margin-bottom: 15px;
}
.cfp-item span {
  font-weight: bold;
  color: #7b2cbf;
}
/* GRID */
.cfp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 15px;
}
.cfp-topic {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: 0.3s;
}
.cfp-topic:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.cfp-topic h4 {
  color: #7b2cbf;
  margin-bottom: 5px;
}
/* LINKS */
.cfp-links {
  padding-left: 18px;
}
.cfp-links li {
  margin-bottom: 8px;
}
.cfp-links a {
  color: #007bff;
  text-decoration: none;
}
.cfp-links a:hover {
  text-decoration: underline;
}
/* SUBMIT BOX */
.cfp-submit {
  margin-top: 30px;
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7b2cbf, #f72585);
  color: #fff;
}
.cfp-submit a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #fff;
  color: #7b2cbf;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}
.cfp-submit a:hover {
  background: #f1f1f1;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .cfp-hero h2 {
    font-size: 24px;
  }
  .cfp-card {
    padding: 20px;
  }
}
