   .cfp-box {
      max-width: 700px;
      width: 100%;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 5px 12px rgba(0,0,0,0.15);
      overflow: hidden;
      animation: fadeInUp 1s ease-out;
      position: relative;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .cfp-header {
      background: linear-gradient(135deg, #b43013, #e84c28);
      color: #fff;
      padding: 16px 20px;  /* reduced */
      font-size: 1.4rem;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 10px;
      letter-spacing: 0.5px;
      animation: slideInLeft 1s ease-out;
    }

    .cfp-header h1 {
      font-size: 1.2rem;
      margin: 0;
    }

    @keyframes slideInLeft {
      from { transform: translateX(-60px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }

    .cfp-row {
      display: flex;
      justify-content: space-between;
      padding: 10px 18px;   /* reduced from 16px 22px */
      font-size: 0.95rem;   /* slightly smaller */
      transition: all 0.3s ease;
      opacity: 0;
      animation: fadeIn 0.8s ease forwards;
    }

    /* Staggered animation delays */
    .cfp-row:nth-child(2) { animation-delay: 0.3s; }
    .cfp-row:nth-child(3) { animation-delay: 0.6s; }
    .cfp-row:nth-child(4) { animation-delay: 0.9s; }
    .cfp-row:nth-child(5) { animation-delay: 1.2s; }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .cfp-row:nth-child(even) {
      background: #fff;
    }

    .cfp-row:nth-child(odd) {
      background: #fff8f4;
    }

    .cfp-row + .cfp-row {
      border-top: 1px solid #eed1c6;
    }

    .cfp-label {
      color: #333;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .cfp-value {
      color: #a72a0f;
      font-weight: bold;
      text-align: right;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    /* Hover effect */
    .cfp-row:hover {
      background: #ffe9e4;
      cursor: pointer;
    }

    .cfp-row:hover .cfp-value {
      transform: scale(1.04);
      color: #e84c28;
    }

    .cfp-footer {
      background: #f9f1ef;
      padding: 10px 18px;  /* reduced */
      text-align: center;
      font-size: 0.9rem;   /* smaller */
      color: #444;
      animation: fadeInUp 1s ease 1.5s forwards;
      opacity: 0;
    }

    .cfp-footer a {
      color: #b43013;
      font-weight: bold;
      text-decoration: none;
      position: relative;
    }

    .cfp-footer a::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      background: #e84c28;
      left: 0;
      bottom: -3px;
      transition: width 0.3s ease;
    }

    .cfp-footer a:hover::after {
      width: 100%;
    }

    @media (max-width: 600px) {
      body {
        padding: 20px;
      }
      .cfp-row {
        flex-direction: column;
        align-items: flex-start;
      }
      .cfp-value {
        text-align: left;
        margin-top: 4px;
      }
    }