 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      height: 100%;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background-color: #fff0f5;
      color: #333;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
    }

    header {
      text-align: center;
      margin-bottom: 40px;
    }

    .header-flex {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .header-flex img {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      border: 5px solid #e63963;
      object-fit: cover;
      animation: auraShift 3s ease-in-out infinite alternate;
    }

    @keyframes auraShift {
      0% { box-shadow: 0 0 25px #e63963; }
      50% { box-shadow: 0 0 35px #ff8fa3; }
      100% { box-shadow: 0 0 35px #a66bff; }
    }

    header h1 {
      font-size: 5rem;
      color: #e63963;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    header p {
      font-size: 2rem;
      color: #555;
      margin-top: 80px;
      margin-bottom: 40px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      max-width: 1000px;
      width: 100%;
      margin-bottom: 40px;
    }

    .card {
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border: 2px solid #e63963;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      height: 100%;
      min-height: 500px;
    }

    .card-title {
      font-size: 1.8rem;
      margin-bottom: 12px;
      color: #e63963;
      text-align: center;
    }

    .card img {
      width: 100%;
      border-radius: 8px;
      display: block;
      margin-bottom: 16px;
    }

    .card h2 {
      font-size: 1.8rem;
      margin-bottom: 12px;
      color: #e63963;
      text-align: center;
    }

    .card ul {
      padding-left: 20px;
      margin-bottom: 12px;
      align-self: flex-start;
    }

    .card ul li {
      margin-bottom: 6px;
    }

    .card p {
      margin-bottom: 12px;
    }

    .price-button {
      background-color: #e63963;
      color: white;
      padding: 12px 40px;
      border: none;
      border-radius: 999px;
      font-size: 1.1rem;
      text-decoration: none;
      transition: background-color 0.3s ease;
      margin-top: auto;
      margin-bottom: 20px;
      width: 70%;
      text-align: center;
    }

    .price-button:hover {
      background-color: #ff6b81;
    }

    .fiverr-link {
      display: inline-block;
      margin-top: 20px;
      background-color: #e63963;
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 999px;
      font-size: 1rem;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .fiverr-link:hover {
      background-color: #ff6b81;
    }

    footer {
      margin-top: 100px;
      padding-top: 40px;
      text-align: center;
      font-size: 0.9rem;
      color: #888;
    }

    .footer-glow {
      text-decoration: none;
      color: #cc3b7c;
      transition: all 0.3s ease;
    }

    .footer-glow:hover {
      color: #ffaad4;
      text-shadow: 0 0 8px #ff77c8;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 3rem;
      }

      .header-flex img {
        width: 100px;
        height: 100px;
      }

      header p {
        font-size: 1.5rem;
      }

      .price-button {
        width: 100%;
        font-size: 1rem;
        padding: 10px 20px;
      }
    }