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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Policies and Procedures - Carpenter Tutoring, LLC</title>
<link rel="stylesheet" href="/stylesheet.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Indie+Flower&family=PT+Sans&family=PT+Sans+Narrow&display=swap"
rel="stylesheet"
/>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<nav>
<a href="/#">
<img src="/assets/logo-simple.png" />
</a>
<a href="/#offerings">Offerings</a>
<a href="/#pricing">Pricing</a>
<a href="/policies">Policies</a>
<a href="/about">About</a>
<a href="/#reviews">Reviews</a>
<a href="/#contact">Contact Me</a>
</nav>
<main>
<section>
<ul>
<li>
<strong>Payment methods</strong> I accept cash, checks made out to
Amy Carpenter, or PayPal (amy@carpentertutoring.com). If you select
to pay through PayPal, there is an additional $1.50 processing fee
per transaction.
</li>
<li>
<strong>Travel policy</strong> Update due to COVID-19 -- To keep all
parties involved as safe as possible during this pandemic, I have
shifted to remote-only tutoring for the foreseeable future.
</li>
<li>
<strong>Remote sessions</strong> Remote sessions are conducted from
my home in Suffolk. I generally use
<a href="https://zoom.us">Zoom</a>, which requires students to
download a free client on their computer or a free app on their
phone or tablet. I am happy to accommodate if you prefer a different
service.
</li>
<li>
<strong>Cancellation policy</strong> Sessions cancelled within 72
hours of their start time will incur a $20 late cancellation fee.
</li>
<li>
<strong>No-Show policy</strong> Sessions which a student does not
attend with no notice of cancellation will be charged the full
session price.
</li>
<li>
<strong>Session Duration policy</strong> Sessions are purchased in
half-hour increments, and the shortest appointment duration is 60
minutes. Families are responsible for the amount of time they book
and will be charged based on that amount, regardless of the length
of the actual appointment. If a student is late to their
appointment, we will work to the end of their scheduled time, but no
later.
</li>
</ul>
</section>
</main>
<footer>
<p>© 2021 Carpenter Tutoring, LLC. All rights reserved.</p>
<p>
<a href="mailto:webmaster@carpentertutoring.com">
Questions, Comments, Feedback
</a>
</p>
</footer>
</body>
</html>
|