-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
57 lines (53 loc) · 2.53 KB
/
contact.html
File metadata and controls
57 lines (53 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Workforce Transition Program Calculator</title>
<link rel="stylesheet" href="css/enhanced-styles.css">
</head>
<body>
<header>
<div class="container">
<h1>Workforce Transition Program Calculator</h1>
<nav>
<ul>
<li><a href="index.html">Calculator</a></li>
<li><a href="index.html#results">Results</a></li>
<li><a href="index.html#options">Program Options</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main class="container">
<section>
<h2 class="section-title">Contact Information</h2>
<div class="contact-card">
<h3>For questions or assistance with this calculator:</h3>
<div class="contact-info">
<p><strong>Name:</strong> Kelly Shaw</p>
<p><strong>Email:</strong> <a href="mailto:kaver68@gmail.com">kaver68@gmail.com</a></p>
</div>
<div class="about-calculator">
<h3>About This Calculator</h3>
<p>This calculator provides financial analysis of Workforce Transition Program options based on your specific situation. It follows the official OPM methodology for calculating severance pay and other benefits.</p>
<p>The calculations include:</p>
<ul>
<li>Deferred Resignation Program (DRP) value</li>
<li>Voluntary Separation Incentive Payment (VSIP) value</li>
<li>Reduction in Force (RIF) severance pay with age adjustment</li>
<li>Annual leave payout calculations</li>
</ul>
<p>For official information about severance pay calculations, please refer to the <a href="https://www.opm.gov/policy-data-oversight/pay-leave/pay-administration/fact-sheets/severance-pay-estimation-worksheet/" target="_blank">OPM Severance Pay Estimation Worksheet</a>.</p>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2025 Workforce Transition Program Calculator | <a href="contact.html">Contact</a></p>
</div>
</footer>
</body>
</html>