| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Presentation Page 4</title> |
| <style> |
| body { |
| margin: 0; |
| padding: 0; |
| min-height: 100vh; |
| background: radial-gradient(circle at 10% 10%, #1d3e75 0%, transparent 50%), |
| radial-gradient(circle at 90% 90%, #524f26 0%, transparent 50%), |
| #0d111a; |
| background-attachment: fixed; |
| font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| color: #e0e4e8; |
| -webkit-print-color-adjust: exact; |
| print-color-adjust: exact; |
| } |
| .page-container { |
| width: 794px; |
| height: 1123px; |
| padding: 100px; |
| box-sizing: border-box; |
| background: rgba(255, 255, 255, 0.03); |
| backdrop-filter: blur(16px); |
| -webkit-backdrop-filter: blur(16px); |
| border: 1px solid rgba(255, 255, 255, 0.08); |
| border-radius: 12px; |
| box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4); |
| position: relative; |
| display: flex; |
| flex-direction: column; |
| justify-content: center; |
| } |
| |
| .section { |
| margin-bottom: 60px; |
| } |
| |
| h2 { |
| font-size: 2.5em; |
| letter-spacing: 4px; |
| font-weight: 300; |
| margin-bottom: 60px; |
| color: #ffffff; |
| text-transform: uppercase; |
| text-align: center; |
| } |
| |
| .point { |
| margin-bottom: 40px; |
| line-height: 1.8; |
| font-size: 1.4em; |
| color: #c9d1d9; |
| font-weight: 300; |
| text-align: justify; |
| } |
| |
| .highlight { |
| color: #d8c385; |
| font-weight: 500; |
| display: block; |
| margin-bottom: 8px; |
| font-size: 1.15em; |
| } |
| </style> |
| </head> |
| <body> |
|
|
| <div class="page-container"> |
| <div class="section"> |
| <h2>🎯 The Problem It Solves</h2> |
| |
| <div class="point"> |
| <span class="highlight">Eliminates Math Errors</span> |
| Automates base salary, hourly calculations, and tax deductions, removing human mistakes from payroll. |
| </div> |
| |
| <div class="point"> |
| <span class="highlight">Builds Worker Trust</span> |
| The employee dashboard provides clear history and statistics, giving workers transparency over their earnings. |
| </div> |
| |
| <div class="point"> |
| <span class="highlight">Saves Managerial Time</span> |
| Converts a multi-day headache of paper timesheets into a fast, central database operation. |
| </div> |
| </div> |
| </div> |
|
|
| </body> |
| </html> |
|
|