  .cfp-container {
    width: 100%;
    max-width: 1050px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
  }

  .cfp-header {
    background-color: #c0392b;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 20px;
    text-align: left;
  }

  .cfp-info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 8px 20px;
    background: #fff;
  }

  .cfp-info-item {
    flex: 1 1 22%;
    min-width: 220px;
    padding: 10px 15px;
    border-right: 1px solid #eee;
    box-sizing: border-box;
  }

  .cfp-info-item:last-child {
    border-right: none;
  }

  .cfp-label {
    color: #444;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
  }

  .cfp-value {
    color: #a93226;
    font-weight: 600;
    font-size: 14px;
    margin-top: 3px;
  }

  .cfp-downloads {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    border-top: 1px solid #eee;
    padding: 10px 0;
    font-size: 14px;
  }

  .cfp-downloads a {
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
  }

  .cfp-downloads a:hover {
    text-decoration: underline;
  }

  .cfp-email {
    text-align: center;
    padding: 8px 0 15px;
    font-size: 14px;
  }

  .cfp-email a {
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
  }

  /* --- Responsive Design --- */
  @media (max-width: 900px) {
    .cfp-info-item {
      flex: 1 1 45%;
      border-right: none;
      border-bottom: 1px solid #f1f1f1;
    }
    .cfp-info-item:nth-child(even) {
      border-bottom: none;
    }
  }

  @media (max-width: 600px) {
    .cfp-info-item {
      flex: 1 1 100%;
      border: none;
      border-bottom: 1px solid #f1f1f1;
    }
    .cfp-info-item:last-child {
      border-bottom: none;
    }
    .cfp-label, .cfp-value {
      font-size: 13px;
    }
  }