��<!DOCTYPE html> <html lang="en-GB"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="Meet Fatima Ansar, a BABCP accredited CBT therapist providing online therapy services. Learn about her qualifications and personalized approach to mental health care."> <title>About - Ansa Therapies</title> <link rel="stylesheet" href="custom-styles.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> </head> <body> <header class="header" id="header"> <div class="container"> <div class="header-content"> <a href="/" class="logo"> <img src="https://ansatherapies.com/wp-content/uploads/2022/05/cropped-Ansa-Therapies-1.png" alt="Ansa Therapies"> </a> <nav> <button class="menu-toggle" id="menuToggle" aria-label="Toggle menu"> <i class="fas fa-bars"></i> </button> <ul class="nav-menu" id="navMenu"> <li><a href="index.html">Home</a></li> <li><a href="services.html">Services</a></li> <li><a href="about.html" class="active">About</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> <a href="contact.html" class="btn btn-primary">Book Now</a> </div> </div> </header> <section class="section bg-light"> <div class="container"> <h1>About Ansa Therapies</h1> <div class="row"> <div class="col-md-8"> <div class="about-content"> <p>Fatima Ansar is a qualified psychotherapist specializing in Cognitive Behavioral Therapy (CBT). With years of experience, she provides personalized therapy for individuals facing various mental health challenges.</p> <h2>Qualifications</h2> <ul> <li>CBT Certification</li> <li>Trauma-informed therapy training</li> <li>Cognitive Processing Therapy</li> <li>Masters in Psychology</li> </ul> <h2>Approach</h2> <p>My therapeutic approach is based on evidence-based practices and tailored to each individual's unique needs. I believe in creating a safe, non-judgmental space where clients can explore their thoughts, feelings, and behaviors.</p> <p>Working together, we'll identify patterns that may be contributing to your difficulties and develop practical strategies to help you move forward. CBT is a collaborative process, and I'm committed to empowering you with the skills needed for lasting change.</p> </div> </div> <div class="col-md-4"> <div class="about-sidebar"> <img src="Images/Polish_20220902_193733988.jpg" alt="Fatima Ansar" class="img-fluid rounded"> <h3>Areas of Expertise</h3> <ul> <li>Anxiety Disorders</li> <li>Depression</li> <li>Trauma and PTSD</li> <li>Stress Management</li> <li>Relationship Issues</li> </ul> </div> </div> </div> </div> </section> <section class="section bg-primary text-white"> <div class="container text-center"> <h2 class="text-white">Ready to Get Started?</h2> <p>Take the first step toward better mental wellbeing today.</p> <a href="contact.html" class="btn btn-secondary mt-3">Book a Consultation</a> </div> </section> <footer class="footer"> <div class="container"> <div class="row"> <div class="col-md-4"> <img src="https://ansatherapies.com/wp-content/uploads/2022/05/cropped-Ansa-Therapies-1.png" alt="Ansa Therapies" class="footer-logo"> </div> <div class="col-md-4"> <h4>Quick Links</h4> <ul class="footer-links"> <li><a href="index.html">Home</a></li> <li><a href="services.html">Services</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html">Contact</a></li> </ul> </div> <div class="col-md-4"> <h4>Contact</h4> <p>info@ansatherapies.com</p> </div> </div> <div class="footer-bottom"> <p>&copy; <script>document.write(new Date().getFullYear())</script> Ansa Therapies. All rights reserved.</p> </div> </div> </footer> <!-- JavaScript --> <script> document.addEventListener('DOMContentLoaded', function() { // Menu Toggle const menuToggle = document.getElementById('menuToggle'); const navMenu = document.getElementById('navMenu'); if (menuToggle && navMenu) { menuToggle.addEventListener('click', function() { navMenu.classList.toggle('active'); }); } // Header Scroll Effect const header = document.getElementById('header'); if (header) { window.addEventListener('scroll', function() { if (window.scrollY > 50) { header.classList.add('scrolled'); } else { header.classList.remove('scrolled'); } }); } // Fade-in Animation const fadeElements = document.querySelectorAll('.section'); const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('visible'); } }); }, { threshold: 0.1 }); fadeElements.forEach(element => { element.classList.add('fade-in'); observer.observe(element); }); }); </script> </body> </html>