
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 20px;
            background: linear-gradient(135deg, #FF5698 0%, #4E4E4E 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header {
            text-align: center;
            margin-bottom: 50px;
            color: white;
        }
        
        .header h1 {
            font-size: 3em;
            margin-bottom: 10px;
            font-weight: 300;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .header .subtitle {
            font-size: 1.3em;
            opacity: 0.9;
            margin-bottom: 20px;
        }
        
        .progress-bar {
            background: rgba(255,255,255,0.2);
            height: 8px;
            border-radius: 4px;
            margin: 30px auto;
            max-width: 600px;
            overflow: hidden;
        }
        
        .progress-fill {
            background: linear-gradient(90deg, #FF5698, #FDEDEC);
            height: 100%;
            width: 100%;
            border-radius: 4px;
            animation: progressFill 3s ease-in-out;
        }
        
        @keyframes progressFill {
            from { width: 0%; }
            to { width: 100%; }
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .step-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #FF5698, #4E4E4E);
        }
        
        .step-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF5698 0%, #4E4E4E 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4em;
            font-weight: bold;
            margin-right: 15px;
            box-shadow: 0 4px 12px rgba(255, 86, 152, 0.3);
        }
        
        .step-title {
            flex: 1;
        }
        
        .step-title h3 {
            margin: 0;
            font-size: 1.4em;
            color: #020202;
            display: flex;
            align-items: center;
        }
        
        .step-icon {
            font-size: 1.6em;
            margin-right: 10px;
        }
        
        .step-description {
            color: #4E4E4E;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 1.05em;
        }
        
        .step-details {
            background: #FDF6EE;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #FF5698;
        }
        
        .step-details ul {
            margin: 10px 0 0 0;
            padding-left: 20px;
        }
        
        .step-details li {
            margin-bottom: 8px;
            color: #4E4E4E;
        }
        
        .step-details strong {
            color: #020202;
            display: block;
            margin-bottom: 10px;
        }
        
        .payment-card {
            background: linear-gradient(135deg, #FF5698 0%, #4E4E4E 100%);
            color: white;
        }
        
        .payment-card .step-details {
            background: rgba(255,255,255,0.15);
            border-left: 4px solid rgba(255,255,255,0.5);
            color: white;
        }
        
        .payment-highlight {
            background: rgba(255,255,255,0.2);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            font-size: 1.1em;
            margin-top: 15px;
        }
        
        .delivery-card {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, #FF5698 0%, #808080 100%);
            color: white;
        }
        
        .delivery-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .delivery-option {
            background: rgba(255,255,255,0.15);
            padding: 20px;
            border-radius: 12px;
            border: 2px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
        }
        
        .delivery-option h4 {
            margin: 0 0 10px 0;
            font-size: 1.2em;
            display: flex;
            align-items: center;
        }
        
        .delivery-option h4 span {
            margin-right: 8px;
        }
        
        .delivery-option small {
            opacity: 0.8;
            display: block;
            margin-bottom: 10px;
        }
        
        .summary-section {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            margin-top: 30px;
        }
        
        .summary-section h3 {
            color: #020202;
            font-size: 1.8em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .summary-section .icon {
            font-size: 2em;
            margin-right: 15px;
        }
        
        .timeline-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .timeline-stat {
            background: #FDEDEC;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #FF5698;
        }
        
        .timeline-stat h4 {
            margin: 0 0 5px 0;
            color: #020202;
            font-size: 1.1em;
        }
        
        .timeline-stat p {
            margin: 0;
            color: #4E4E4E;
        }
        
        @media (max-width: 768px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }
            
            .delivery-card {
                grid-column: 1;
            }
            
            .delivery-options {
                grid-template-columns: 1fr;
            }
            
            .timeline-stats {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 2.2em;
            }
        }
        
        .step-card:nth-child(1) { animation-delay: 0.1s; }
        .step-card:nth-child(2) { animation-delay: 0.2s; }
        .step-card:nth-child(3) { animation-delay: 0.3s; }
        .step-card:nth-child(4) { animation-delay: 0.4s; }
        .step-card:nth-child(5) { animation-delay: 0.5s; }
        .step-card:nth-child(6) { animation-delay: 0.6s; }
        .step-card:nth-child(7) { animation-delay: 0.7s; }
        .step-card:nth-child(8) { animation-delay: 0.8s; }
        .step-card:nth-child(9) { animation-delay: 0.9s; }
        
        .step-card {
            animation: slideInUp 0.6s ease-out both;
        }
        
        @keyframes slideInUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
    