Therapy Card App What are Therapy Cards?
Therapy cards offer a unique approach to self-reflection, helping you uncover emotions and insights through visual metaphors.
App Features
Digital Deck of Therapy Cards
Choose from a variety of themes that help explore emotions, relationships, and personal growth.
Guided Exercises
Personalized prompts and exercises guide you through deep self-reflection and journaling.
Therapist Mode
Designed for therapists to guide sessions, assign exercises, and review client progress.
Session History
Track past sessions, chosen cards, and recorded reflections all in one place.
Why Choose TheraCards?
- Enhance self-awareness and emotional insight.
- Flexible tool for therapists and individuals alike.
- Access anytime, anywhere on mobile devices.
Frequently Asked Questions
Is my data secure? Yes, we prioritize data security with encryption and privacy-focused features.
Can I use this offline? Yes, once downloaded, TheraCards can be used offline.
/* General Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: #f2f8f5;
color: #333;
}
/* Header Section */
.header {
background-color: #d5f0eb;
text-align: center;
padding: 50px 20px;
color: #446a75;
}
.header h1 {
font-size: 2.5rem;
color: #38798a;
}
.header p {
font-size: 1.2rem;
margin-top: 10px;
color: #6b9da9;
}
.cta-button {
background-color: #76b4bf;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
display: inline-block;
}
.cta-button:hover {
background-color: #62a4af;
}
/* Section Styles */
section {
padding: 40px 20px;
}
h2 {
font-size: 2rem;
color: #5a757d;
text-align: center;
margin-bottom: 20px;
}
/* Features Section */
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.feature-card {
background-color: #e0f7ef;
border-radius: 8px;
padding: 20px;
text-align: center;
color: #48757d;
}
.feature-card h3 {
color: #38798a;
}
/* Benefits Section */
.benefits ul {
list-style: none;
text-align: center;
}
.benefits li {
background-color: #d7f0e2;
margin: 10px 0;
padding: 15px;
border-radius: 5px;
color: #5a757d;
}
/* Download Section */
.download {
background-color: #d7e8f0;
text-align: center;
padding: 50px 20px;
}
.download h2 {
color: #38798a;
}
.download a {
margin: 10px;
display: inline-block;
}
/* FAQ Section */
.faq p {
background-color: #f1f9f8;
padding: 15px;
border-radius: 5px;
margin: 10px 0;
color: #333;
}
/* Footer */
.footer {
text-align: center;
padding: 20px;
background-color: #d5f0eb;
color: #446a75;
}