
        @page {
            size: A4;
            margin: 0.5in;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.4;
            margin: 0;
            padding: 20px;
            background: #f8f9fa;
            color: #333;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .header {
            background: linear-gradient(135deg, #e74c3c, #f39c12);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .header::before {
            content: "💬";
            position: absolute;
            top: 15px;
            right: 30px;
            font-size: 3em;
            opacity: 0.3;
        }
        
        .header h1 {
            margin: 0;
            font-size: 2.8em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .subtitle {
            font-size: 1.3em;
            margin-top: 10px;
            opacity: 0.9;
            font-style: italic;
        }
        
        .content {
            padding: 30px;
        }
        
        .overview-box {
            background: #fef5e7;
            border-left: 5px solid #f39c12;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 0 8px 8px 0;
            position: relative;
        }
        
        .overview-box::before {
            content: "⏰";
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2em;
            opacity: 0.6;
        }
        
        .overview-box h2 {
            margin-top: 0;
            color: #d68910;
            font-size: 1.6em;
        }
        
        .timing-emphasis {
            background: #e74c3c;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            display: inline-block;
            font-weight: bold;
            font-size: 1.1em;
            margin: 10px 0;
        }
        
        .specs {
            display: flex;
            justify-content: space-around;
            background: linear-gradient(45deg, #fdedec, #fef9e7);
            padding: 25px;
            margin: 25px 0;
            border-radius: 12px;
            border: 2px solid #f8c471;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .spec-item {
            text-align: center;
            flex: 1;
            position: relative;
        }
        
        .spec-item::after {
            content: "";
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: #d68910;
            opacity: 0.5;
        }
        
        .spec-item:last-child::after {
            display: none;
        }
        
        .spec-label {
            font-weight: bold;
            color: #d68910;
            font-size: 0.9em;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .spec-value {
            font-size: 1.3em;
            color: #e74c3c;
            margin-top: 8px;
            font-weight: bold;
        }
        
        .section {
            margin-bottom: 35px;
        }
        
        .section h3 {
            color: #d68910;
            font-size: 1.5em;
            margin-bottom: 20px;
            border-bottom: 3px solid #f39c12;
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .process-flow {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .process-step {
            background: white;
            border: 3px solid #f39c12;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            position: relative;
            transition: transform 0.2s;
        }
        
        .process-step:hover {
            transform: translateY(-2px);
        }
        
        .step-icon {
            font-size: 3em;
            margin-bottom: 15px;
            display: block;
        }
        
        .step-number {
            background: #e74c3c;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.3em;
            margin: 0 auto 15px;
            border: 3px solid white;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }
        
        .process-step h4 {
            margin: 0 0 12px 0;
            color: #d68910;
            font-size: 1.2em;
            font-weight: bold;
        }
        
        .process-step p {
            color: #5d6d7e;
            margin: 0;
            line-height: 1.5;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .benefit-card {
            background: linear-gradient(135deg, #fdeaa7, #f7dc6f);
            border: 2px solid #f4d03f;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            position: relative;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .benefit-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            display: block;
        }
        
        .benefit-title {
            font-weight: bold;
            color: #b7950b;
            margin-bottom: 10px;
            font-size: 1.1em;
        }
        
        .benefit-desc {
            color: #7d6608;
            font-size: 0.9em;
            line-height: 1.4;
        }
        
        .quote-box {
            background: #eaf2f8;
            border-left: 5px solid #5dade2;
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            position: relative;
            font-style: italic;
        }
        
        .quote-box::before {
            content: """;
            font-size: 4em;
            color: #5dade2;
            position: absolute;
            top: -10px;
            left: 15px;
            opacity: 0.3;
        }
        
        .quote-text {
            color: #2874a6;
            font-size: 1.1em;
            line-height: 1.6;
            margin-left: 30px;
        }
        
        .quote-author {
            text-align: right;
            margin-top: 15px;
            color: #1b4f72;
            font-weight: bold;
        }
        
        .flexibility-box {
            background: #e8f8f5;
            border: 2px solid #58d68d;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
        }
        
        .flexibility-box h4 {
            margin-top: 0;
            color: #148f77;
            font-size: 1.3em;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .flexibility-list {
            list-style: none;
            padding: 0;
            margin: 15px 0 0 0;
        }
        
        .flexibility-list li {
            padding: 8px 0;
            position: relative;
            padding-left: 35px;
            color: #0e6655;
        }
        
        .flexibility-list li:before {
            content: "✅";
            position: absolute;
            left: 0;
            font-size: 1.2em;
        }
        
        .timing-guide {
            background: #fdf2e9;
            border: 2px dashed #e67e22;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            text-align: center;
        }
        
        .timing-guide h4 {
            margin-top: 0;
            color: #d35400;
            font-size: 1.4em;
        }
        
        .timing-options {
            display: flex;
            justify-content: space-around;
            margin: 20px 0;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .timing-option {
            background: #e67e22;
            color: white;
            padding: 12px 20px;
            border-radius: 25px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9em;
        }
        
        .footer {
            background: linear-gradient(135deg, #d68910, #e74c3c);
            color: white;
            padding: 25px;
            text-align: center;
            margin-top: 30px;
        }
        
        .footer-content {
            font-size: 0.95em;
            line-height: 1.6;
        }
        
        @media print {
            body {
                background: white;
            }
            .container {
                box-shadow: none;
            }
            .process-step:hover {
                transform: none;
            }
        }
   