File size: 37,971 Bytes
c90c7e7 |
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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TM - The Science of Inner Peace | Learn Transcendental Meditation</title>
<meta name="description" content="Experience the scientifically proven benefits of Transcendental Meditation. Reduce stress, improve focus, and enhance wellbeing with our simple, natural technique.">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.hero-gradient {
background: linear-gradient(135deg, rgba(56,182,255,0.8) 0%, rgba(124,58,237,0.8) 100%);
}
.testimonial-card {
transition: transform 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-5px);
}
.feature-icon {
transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
transform: scale(1.1);
color: #7c3aed;
}
.cta-pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
}
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Header with Navigation -->
<header class="sticky top-0 z-50 bg-white shadow-sm">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<a href="#" class="text-2xl font-bold text-purple-700 flex items-center">
<i class="fas fa-spa mr-2"></i> TM
</a>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="text-purple-700 font-medium hover:text-purple-600 transition">Home</a>
<a href="#" class="text-gray-600 hover:text-purple-600 transition">About TM</a>
<a href="#" class="text-gray-600 hover:text-purple-600 transition">Research</a>
<a href="#" class="text-gray-600 hover:text-purple-600 transition">Courses</a>
<a href="#" class="text-gray-600 hover:text-purple-600 transition">Find a Teacher</a>
</nav>
<div class="flex items-center space-x-4">
<a href="#" class="hidden md:block text-gray-600 hover:text-purple-600 transition">Login</a>
<a href="#cta" class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-full font-medium transition shadow-md">Free Intro Session</a>
<button class="md:hidden text-gray-600">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero-gradient text-white py-20 md:py-32">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-6 leading-tight">Transform Your Life with Transcendental Meditation</h1>
<p class="text-xl mb-8 opacity-90">Experience deep rest and inner peace with our simple, natural technique practiced by millions worldwide.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#cta" class="bg-white text-purple-700 hover:bg-gray-100 px-6 py-3 rounded-full font-bold text-center shadow-lg transition">Start Your Free Intro Session</a>
<a href="#" class="border-2 border-white hover:bg-white hover:text-purple-700 px-6 py-3 rounded-full font-medium text-center transition">Watch Video <i class="fas fa-play ml-2"></i></a>
</div>
<div class="mt-8 flex items-center">
<div class="flex -space-x-2">
<img src="https://randomuser.me/api/portraits/women/12.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="Happy user">
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="Happy user">
<img src="https://randomuser.me/api/portraits/women/45.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="Happy user">
</div>
<div class="ml-4">
<p class="text-sm font-medium">Join 10M+ people experiencing the benefits</p>
<div class="flex text-yellow-400 mt-1">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<span class="text-white ml-2">4.9/5 (2,500+ reviews)</span>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<img src="https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Peaceful meditation" class="rounded-xl shadow-2xl w-full max-w-md border-4 border-white">
<div class="absolute -bottom-5 -right-5 bg-white rounded-lg shadow-lg p-4 w-48">
<div class="flex items-center">
<div class="bg-green-100 rounded-full p-2 mr-2">
<i class="fas fa-check text-green-600"></i>
</div>
<p class="text-sm font-medium">Scientifically Proven Benefits</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Trust Badges -->
<section class="bg-gray-50 py-8">
<div class="container mx-auto px-4">
<p class="text-center text-gray-500 mb-6">Trusted by leading organizations worldwide</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<img src="https://via.placeholder.com/120x60?text=Harvard" alt="Harvard" class="h-8 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/120x60?text=Google" alt="Google" class="h-8 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/120x60?text=NASA" alt="NASA" class="h-8 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/120x60?text=WHO" alt="WHO" class="h-8 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/120x60?text=Stanford" alt="Stanford" class="h-8 opacity-70 hover:opacity-100 transition">
</div>
</div>
</section>
<!-- Benefits Section -->
<section class="py-16 md:py-24 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">The Science-Backed Benefits of TM</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Hundreds of peer-reviewed studies confirm what millions of practitioners experience daily</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="feature-card bg-gray-50 rounded-xl p-8 hover:shadow-lg transition">
<div class="feature-icon text-purple-600 text-4xl mb-6">
<i class="fas fa-heartbeat"></i>
</div>
<h3 class="text-xl font-bold mb-3">Reduces Stress & Anxiety</h3>
<p class="text-gray-600">TM decreases cortisol levels by 30% and significantly reduces symptoms of anxiety and depression.</p>
</div>
<div class="feature-card bg-gray-50 rounded-xl p-8 hover:shadow-lg transition">
<div class="feature-icon text-purple-600 text-4xl mb-6">
<i class="fas fa-brain"></i>
</div>
<h3 class="text-xl font-bold mb-3">Enhances Brain Function</h3>
<p class="text-gray-600">Regular practice increases coherence in brain waves and improves memory, focus, and creativity.</p>
</div>
<div class="feature-card bg-gray-50 rounded-xl p-8 hover:shadow-lg transition">
<div class="feature-icon text-purple-600 text-4xl mb-6">
<i class="fas fa-bed"></i>
</div>
<h3 class="text-xl font-bold mb-3">Improves Sleep Quality</h3>
<p class="text-gray-600">TM practitioners report falling asleep faster and experiencing deeper, more restful sleep.</p>
</div>
<div class="feature-card bg-gray-50 rounded-xl p-8 hover:shadow-lg transition">
<div class="feature-icon text-purple-600 text-4xl mb-6">
<i class="fas fa-chart-line"></i>
</div>
<h3 class="text-xl font-bold mb-3">Boosts Productivity</h3>
<p class="text-gray-600">Companies report 30-50% increases in productivity when employees practice TM regularly.</p>
</div>
<div class="feature-card bg-gray-50 rounded-xl p-8 hover:shadow-lg transition">
<div class="feature-icon text-purple-600 text-4xl mb-6">
<i class="fas fa-heart"></i>
</div>
<h3 class="text-xl font-bold mb-3">Lowers Blood Pressure</h3>
<p class="text-gray-600">Studies show TM can reduce hypertension as effectively as medication, without side effects.</p>
</div>
<div class="feature-card bg-gray-50 rounded-xl p-8 hover:shadow-lg transition">
<div class="feature-icon text-purple-600 text-4xl mb-6">
<i class="fas fa-smile"></i>
</div>
<h3 class="text-xl font-bold mb-3">Increases Happiness</h3>
<p class="text-gray-600">Regular practitioners report higher levels of life satisfaction and emotional wellbeing.</p>
</div>
</div>
<div class="mt-12 text-center">
<a href="#" class="text-purple-700 font-medium hover:text-purple-600 transition">View All Scientific Research <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</section>
<!-- How It Works Section -->
<section class="py-16 md:py-24 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">How Transcendental Meditation Works</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">A simple, natural technique practiced 20 minutes twice daily</p>
</div>
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
<div class="relative">
<div class="absolute -top-6 -left-6 w-24 h-24 border-t-4 border-l-4 border-purple-300 rounded-tl-xl"></div>
<img src="https://images.unsplash.com/photo-1544376798-89aa6b82c6cd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Meditation technique" class="rounded-xl shadow-lg relative z-10">
<div class="absolute -bottom-6 -right-6 w-24 h-24 border-b-4 border-r-4 border-purple-300 rounded-br-xl"></div>
</div>
</div>
<div class="lg:w-1/2">
<div class="space-y-8">
<div class="flex">
<div class="flex-shrink-0 bg-purple-100 rounded-full w-12 h-12 flex items-center justify-center text-purple-700 font-bold mr-4">1</div>
<div>
<h3 class="text-xl font-bold mb-2">Personalized Instruction</h3>
<p class="text-gray-600">Receive your unique mantra from a certified TM teacher in a one-on-one session.</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0 bg-purple-100 rounded-full w-12 h-12 flex items-center justify-center text-purple-700 font-bold mr-4">2</div>
<div>
<h3 class="text-xl font-bold mb-2">Effortless Practice</h3>
<p class="text-gray-600">Sit comfortably with eyes closed and silently repeat your mantra, allowing your mind to settle naturally.</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0 bg-purple-100 rounded-full w-12 h-12 flex items-center justify-center text-purple-700 font-bold mr-4">3</div>
<div>
<h3 class="text-xl font-bold mb-2">Deep Rest & Reset</h3>
<p class="text-gray-600">Experience a state of restful alertness that dissolves stress and rejuvenates your mind and body.</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0 bg-purple-100 rounded-full w-12 h-12 flex items-center justify-center text-purple-700 font-bold mr-4">4</div>
<div>
<h3 class="text-xl font-bold mb-2">Daily Benefits</h3>
<p class="text-gray-600">Regular practice leads to increased clarity, creativity, and resilience in daily life.</p>
</div>
</div>
</div>
<div class="mt-10">
<a href="#cta" class="bg-purple-600 hover:bg-purple-700 text-white px-6 py-3 rounded-full font-bold inline-block shadow-md transition">Start Learning Today</a>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-16 md:py-24 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">What People Are Saying</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Hear from those who've transformed their lives with TM</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="testimonial-card bg-gray-50 rounded-xl p-8 hover:shadow-lg transition">
<div class="flex items-center mb-4">
<div class="flex text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-gray-500 text-sm">2 weeks ago</span>
</div>
<p class="text-gray-700 mb-6">"After just one month of TM, my anxiety levels dropped dramatically. I sleep better, focus better at work, and feel more at peace with myself."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Sarah J.</h4>
<p class="text-gray-500 text-sm">Marketing Director</p>
</div>
</div>
</div>
<div class="testimonial-card bg-gray-50 rounded-xl p-8 hover:shadow-lg transition">
<div class="flex items-center mb-4">
<div class="flex text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-gray-500 text-sm">1 month ago</span>
</div>
<p class="text-gray-700 mb-6">"As a CEO, TM has been my secret weapon for decision-making. The clarity I gain from just 20 minutes is better than any productivity hack I've tried."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Michael T.</h4>
<p class="text-gray-500 text-sm">Tech Entrepreneur</p>
</div>
</div>
</div>
<div class="testimonial-card bg-gray-50 rounded-xl p-8 hover:shadow-lg transition">
<div class="flex items-center mb-4">
<div class="flex text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-gray-500 text-sm">3 weeks ago</span>
</div>
<p class="text-gray-700 mb-6">"I was skeptical at first, but TM has genuinely changed my life. My blood pressure normalized, and I feel 10 years younger. Worth every penny."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Lisa M." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Lisa M.</h4>
<p class="text-gray-500 text-sm">Retired Teacher</p>
</div>
</div>
</div>
</div>
<div class="mt-12 text-center">
<a href="#" class="inline-flex items-center text-purple-700 font-medium hover:text-purple-600 transition">
Read More Success Stories
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- CTA Section -->
<section id="cta" class="py-16 md:py-24 bg-purple-700 text-white">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Life?</h2>
<p class="text-xl mb-8 opacity-90">Join millions who have discovered the power of Transcendental Meditation. Start with a free introductory session today.</p>
<div class="bg-white rounded-xl shadow-2xl p-8 max-w-2xl mx-auto">
<h3 class="text-2xl font-bold text-gray-800 mb-6">Free Introductory Session</h3>
<form class="space-y-4">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label for="first-name" class="block text-left text-gray-700 font-medium mb-1">First Name</label>
<input type="text" id="first-name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-600 focus:border-transparent" required>
</div>
<div>
<label for="last-name" class="block text-left text-gray-700 font-medium mb-1">Last Name</label>
<input type="text" id="last-name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-600 focus:border-transparent" required>
</div>
</div>
<div>
<label for="email" class="block text-left text-gray-700 font-medium mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-600 focus:border-transparent" required>
</div>
<div>
<label for="phone" class="block text-left text-gray-700 font-medium mb-1">Phone Number</label>
<input type="tel" id="phone" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-600 focus:border-transparent" required>
</div>
<div>
<label for="location" class="block text-left text-gray-700 font-medium mb-1">Location (City/State)</label>
<input type="text" id="location" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-600 focus:border-transparent" required>
</div>
<div class="pt-2">
<button type="submit" class="cta-pulse w-full bg-purple-600 hover:bg-purple-700 text-white font-bold py-4 px-6 rounded-full transition duration-300 shadow-lg">
Reserve My Free Session
</button>
</div>
<p class="text-gray-500 text-sm mt-4">
By submitting this form, you agree to receive communications from us about TM. We respect your privacy and will never share your information.
</p>
</form>
</div>
<div class="mt-8 flex flex-col sm:flex-row justify-center items-center space-y-4 sm:space-y-0 sm:space-x-8">
<div class="flex items-center">
<div class="bg-white bg-opacity-20 rounded-full p-2 mr-3">
<i class="fas fa-shield-alt"></i>
</div>
<span>Secure & Confidential</span>
</div>
<div class="flex items-center">
<div class="bg-white bg-opacity-20 rounded-full p-2 mr-3">
<i class="fas fa-calendar-check"></i>
</div>
<span>Flexible Scheduling</span>
</div>
<div class="flex items-center">
<div class="bg-white bg-opacity-20 rounded-full p-2 mr-3">
<i class="fas fa-user-tie"></i>
</div>
<span>Certified Instructors</span>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-16 md:py-24 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Frequently Asked Questions</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Everything you need to know about starting TM</p>
</div>
<div class="max-w-3xl mx-auto">
<div class="space-y-4">
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left hover:bg-gray-100 transition">
<h3 class="text-lg font-medium">How is TM different from other meditation techniques?</h3>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-gray-600">TM is unique because it's effortless and doesn't require concentration or control of the mind. Unlike mindfulness or focused attention techniques, TM allows your mind to naturally settle inward to a state of deep rest while remaining fully alert. This automatic process is facilitated by your personalized mantra.</p>
</div>
</div>
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left hover:bg-gray-100 transition">
<h3 class="text-lg font-medium">How much time does TM take each day?</h3>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-gray-600">The standard practice is 20 minutes twice daily — once in the morning and once in the afternoon or evening. Many practitioners find they gain more time than they invest, as the increased efficiency, focus, and reduced stress more than make up for the 40 minutes spent meditating.</p>
</div>
</div>
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left hover:bg-gray-100 transition">
<h3 class="text-lg font-medium">Why do I need a teacher? Can't I learn from an app?</h3>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-gray-600">TM is traditionally taught one-on-one by certified instructors to ensure correct practice. Your teacher selects a personalized mantra for you based on various factors and provides proper instruction and follow-up. This personalized approach leads to better results than generic meditation apps. Research shows TM practitioners taught by certified instructors experience greater benefits.</p>
</div>
</div>
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left hover:bg-gray-100 transition">
<h3 class="text-lg font-medium">What's included in the TM course?</h3>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-gray-600">The standard TM course includes:
<ul class="list-disc pl-5 mt-2 space-y-2">
<li>A free introductory information session</li>
<li>Personal one-on-one instruction (1-2 hours)</li>
<li>Three follow-up sessions on consecutive days (1-2 hours each)</li>
<li>Lifetime access to free checking sessions worldwide</li>
<li>Access to group meditations and advanced techniques</li>
</ul>
</p>
</div>
</div>
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left hover:bg-gray-100 transition">
<h3 class="text-lg font-medium">Is TM associated with any religion?</h3>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-gray-600">No, TM is not a religion, philosophy, or lifestyle. It's a simple, natural technique for deep rest and stress relief. People from all religious backgrounds (and none) practice TM without conflict with their beliefs. The technique is based on the natural tendency of the human mind to seek greater happiness and has been scientifically validated across diverse populations.</p>
</div>
</div>
</div>
<div class="mt-12 text-center">
<a href="#" class="inline-flex items-center text-purple-700 font-medium hover:text-purple-600 transition">
View All FAQs
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-12 mb-12">
<div>
<a href="#" class="text-2xl font-bold text-white flex items-center mb-6">
<i class="fas fa-spa mr-2"></i> TM
</a>
<p class="text-gray-400 mb-6">Transcendental Meditation is a simple, natural technique practiced 20 minutes twice each day while sitting comfortably with the eyes closed.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div>
<h3 class="text-lg font-bold mb-6">Quick Links</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">About TM</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Scientific Research</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">TM for Students</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">TM for Veterans</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">TM in Schools</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-6">Resources</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">Find a Teacher</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Course Fees</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Scholarships</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Corporate Programs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Research Library</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-6">Contact Us</h3>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-3 text-gray-400"></i>
<span class="text-gray-400">123 Meditation Way, Fairfield, IA 52556</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt mr-3 text-gray-400"></i>
<span class="text-gray-400">1-800-MEDITATE</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope mr-3 text-gray-400"></i>
<span class="text-gray-400">[email protected]</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 Transcendental Meditation. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white transition">Cookie Policy</a>
</div>
</div>
</div>
</footer>
<!-- Floating CTA Button (Mobile) -->
<div class="fixed bottom-6 right-6 md:hidden z-50">
<a href="#cta" class="cta-pulse bg-purple-600 hover:bg-purple-700 text-white w-14 h-14 rounded-full flex items-center justify-center shadow-xl">
<i class="fas fa-calendar-alt text-xl"></i>
</a>
</div>
<script>
// FAQ Toggle Functionality
document.querySelectorAll('.faq-toggle').forEach(button => {
button.addEventListener('click', () => {
const faqContent = button.nextElementSibling;
const icon = button.querySelector('i');
// Toggle the content
faqContent.classList.toggle('hidden');
// Rotate the icon
if (faqContent.classList.contains('hidden')) {
icon.style.transform = 'rotate(0deg)';
} else {
icon.style.transform = 'rotate(180deg)';
}
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Form submission handling
const form = document.querySelector('form');
if (form) {
form.addEventListener('submit', (e) => {
e.preventDefault();
// Here you would typically send the form data to your server
alert('Thank you for your interest! A TM instructor will contact you shortly to schedule your free session.');
form.reset();
});
}
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=simondev1/tm" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |