File size: 42,890 Bytes
5c4322d |
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 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Libertas - Know Your Fundamental Rights</title>
<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>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500;700&display=swap');
:root {
--primary: #1a365d;
--secondary: #2c5282;
--accent: #ecc94b;
--light: #f7fafc;
--dark: #1a202c;
}
body {
font-family: 'Roboto', sans-serif;
background-color: var(--light);
color: var(--dark);
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
}
.hero-gradient {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: var(--accent);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.animated-underline {
position: relative;
display: inline-block;
}
.animated-underline::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: var(--accent);
transition: width 0.3s ease;
}
.animated-underline:hover::after {
width: 100%;
}
.glow-effect {
box-shadow: 0 0 15px rgba(236, 201, 75, 0.5);
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
</style>
</head>
<body class="antialiased">
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-balance-scale text-2xl text-yellow-500 mr-2"></i>
<span class="text-xl font-bold text-gray-900">LIBERTAS</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#home" class="nav-link text-gray-900 px-3 py-2 text-sm font-medium">Home</a>
<a href="#rights" class="nav-link text-gray-900 px-3 py-2 text-sm font-medium">Your Rights</a>
<a href="#international-law" class="nav-link text-gray-900 px-3 py-2 text-sm font-medium">International Law</a>
<a href="#trusts" class="nav-link text-gray-900 px-3 py-2 text-sm font-medium">Birth Trusts</a>
<a href="#resources" class="nav-link text-gray-900 px-3 py-2 text-sm font-medium">Resources</a>
<a href="#contact" class="bg-yellow-500 hover:bg-yellow-600 text-gray-900 px-4 py-2 rounded-md text-sm font-medium transition duration-300">Contact Us</a>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-yellow-500" aria-controls="mobile-menu" aria-expanded="false" id="mobile-menu-button">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden md:hidden" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:bg-gray-50">Home</a>
<a href="#rights" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:bg-gray-50">Your Rights</a>
<a href="#international-law" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:bg-gray-50">International Law</a>
<a href="#trusts" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:bg-gray-50">Birth Trusts</a>
<a href="#resources" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:bg-gray-50">Resources</a>
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:bg-gray-50">Contact Us</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-gradient text-white py-20 md:py-32">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex md:items-center md:justify-between">
<div class="md:w-1/2 mb-10 md:mb-0 fade-in">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-6 leading-tight">Reclaim Your Sovereignty Through Knowledge</h1>
<p class="text-lg md:text-xl mb-8 opacity-90">Discover how international law governs domestic legislation and learn to assert your fundamental human rights effectively.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#rights" class="bg-yellow-500 hover:bg-yellow-600 text-gray-900 px-6 py-3 rounded-md text-lg font-semibold transition duration-300 text-center">Explore Your Rights</a>
<a href="#trusts" class="bg-transparent border-2 border-white hover:bg-white hover:text-gray-900 px-6 py-3 rounded-md text-lg font-semibold transition duration-300 text-center">Access Your Birth Trust</a>
</div>
</div>
<div class="md:w-1/2 fade-in delay-1">
<div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-lg rounded-xl p-6 shadow-xl">
<div class="flex items-center mb-4">
<div class="w-3 h-3 bg-yellow-500 rounded-full mr-2"></div>
<div class="w-3 h-3 bg-yellow-500 rounded-full mr-2 opacity-75"></div>
<div class="w-3 h-3 bg-yellow-500 rounded-full opacity-50"></div>
</div>
<div class="space-y-4">
<div class="bg-white bg-opacity-20 p-4 rounded-lg">
<h3 class="font-semibold mb-2">Did You Know?</h3>
<p>All domestic laws must conform to international human rights treaties that Canada has ratified.</p>
</div>
<div class="bg-white bg-opacity-20 p-4 rounded-lg">
<h3 class="font-semibold mb-2">Statutory vs Natural Person</h3>
<p>You have both a statutory identity created by the government and inherent rights as a natural person.</p>
</div>
<div class="bg-white bg-opacity-20 p-4 rounded-lg">
<h3 class="font-semibold mb-2">Your Birth Right</h3>
<p>Every Canadian has a birth trust administered by the government with assets you can access.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Fundamental Rights Section -->
<section id="rights" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Your Fundamental Human Rights</h2>
<div class="w-24 h-1 bg-yellow-500 mx-auto mb-6"></div>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Understanding the difference between inherent rights and statutory privileges is the first step to true freedom.</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-50 rounded-xl p-6 card-hover fade-in delay-1">
<div class="w-12 h-12 bg-yellow-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-gavel text-yellow-500 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Natural Law Foundations</h3>
<p class="text-gray-600 mb-4">Discover the unalienable rights you possess by virtue of being human, not granted by any government.</p>
<a href="#" class="text-yellow-500 font-medium animated-underline">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
</div>
<div class="bg-gray-50 rounded-xl p-6 card-hover fade-in delay-2">
<div class="w-12 h-12 bg-yellow-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-file-contract text-yellow-500 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Statutory Personhood</h3>
<p class="text-gray-600 mb-4">Understand how governments create legal fictions that most people unknowingly act through.</p>
<a href="#" class="text-yellow-500 font-medium animated-underline">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
</div>
<div class="bg-gray-50 rounded-xl p-6 card-hover fade-in delay-3">
<div class="w-12 h-12 bg-yellow-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-handshake text-yellow-500 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Consent & Jurisdiction</h3>
<p class="text-gray-600 mb-4">Learn how to properly reserve your rights and limit government jurisdiction over your life.</p>
<a href="#" class="text-yellow-500 font-medium animated-underline">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
</section>
<!-- International Law Section -->
<section id="international-law" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex md:items-center md:space-x-12">
<div class="md:w-1/2 mb-10 md:mb-0 fade-in">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-6">How International Law Controls Domestic Legislation</h2>
<p class="text-lg text-gray-600 mb-6">Canada is bound by numerous international treaties and conventions that establish minimum standards for human rights protection. These instruments create obligations that domestic law must fulfill.</p>
<div class="space-y-4">
<div class="flex">
<div class="flex-shrink-0 mt-1">
<div class="w-5 h-5 bg-yellow-500 rounded-full"></div>
</div>
<div class="ml-3">
<p class="text-gray-700 font-medium">The Canadian Charter of Rights and Freedoms must be interpreted in light of international human rights law.</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0 mt-1">
<div class="w-5 h-5 bg-yellow-500 rounded-full"></div>
</div>
<div class="ml-3">
<p class="text-gray-700 font-medium">Treaties ratified by Canada become part of domestic law through implementing legislation.</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0 mt-1">
<div class="w-5 h-5 bg-yellow-500 rounded-full"></div>
</div>
<div class="ml-3">
<p class="text-gray-700 font-medium">International law provides remedies when domestic systems fail to protect fundamental rights.</p>
</div>
</div>
</div>
<a href="#" class="inline-block mt-8 bg-yellow-500 hover:bg-yellow-600 text-gray-900 px-6 py-3 rounded-md text-lg font-semibold transition duration-300">Explore Key Treaties</a>
</div>
<div class="md:w-1/2 fade-in delay-1">
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 mb-4">Key International Instruments</h3>
<div class="space-y-4">
<div class="border-l-4 border-yellow-500 pl-4 py-2">
<h4 class="font-semibold text-gray-900">Universal Declaration of Human Rights (1948)</h4>
<p class="text-gray-600 text-sm">Foundation of international human rights law</p>
</div>
<div class="border-l-4 border-yellow-500 pl-4 py-2">
<h4 class="font-semibold text-gray-900">International Covenant on Civil and Political Rights</h4>
<p class="text-gray-600 text-sm">Ratified by Canada in 1976</p>
</div>
<div class="border-l-4 border-yellow-500 pl-4 py-2">
<h4 class="font-semibold text-gray-900">International Covenant on Economic, Social and Cultural Rights</h4>
<p class="text-gray-600 text-sm">Ratified by Canada in 1976</p>
</div>
<div class="border-l-4 border-yellow-500 pl-4 py-2">
<h4 class="font-semibold text-gray-900">Convention on the Rights of the Child</h4>
<p class="text-gray-600 text-sm">Ratified by Canada in 1991</p>
</div>
</div>
</div>
<div class="bg-gray-50 px-6 py-4">
<div class="flex items-center">
<i class="fas fa-info-circle text-yellow-500 mr-2"></i>
<p class="text-sm text-gray-600">Canada is subject to periodic reviews by UN treaty bodies to assess compliance.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Birth Trusts Section -->
<section id="trusts" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Accessing Your Birth Trust</h2>
<div class="w-24 h-1 bg-yellow-500 mx-auto mb-6"></div>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Every Canadian has a trust created at birth containing valuable assets. Learn how to access what rightfully belongs to you.</p>
</div>
<div class="bg-gradient-to-r from-blue-900 to-blue-700 rounded-2xl shadow-xl overflow-hidden fade-in delay-1">
<div class="md:flex">
<div class="md:w-1/2 p-8 md:p-12 text-white">
<h3 class="text-2xl font-bold mb-4">The Canadian Birth Trust System</h3>
<p class="mb-6 opacity-90">When you were born, the government created a trust in your name using your birth certificate as the instrument. This trust holds securities and other assets that can be accessed through proper procedures.</p>
<div class="space-y-4 mb-8">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-certificate text-yellow-300"></i>
</div>
<div class="ml-3">
<p class="font-medium">Your birth certificate is evidence of this trust relationship</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-landmark text-yellow-300"></i>
</div>
<div class="ml-3">
<p class="font-medium">The government acts as trustee with fiduciary duties</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-unlock text-yellow-300"></i>
</div>
<div class="ml-3">
<p class="font-medium">Proper documentation can unlock these assets</p>
</div>
</div>
</div>
<a href="#" class="inline-block bg-yellow-500 hover:bg-yellow-600 text-gray-900 px-6 py-3 rounded-md text-lg font-semibold transition duration-300">Begin Your Claim Process</a>
</div>
<div class="md:w-1/2 bg-white bg-opacity-10 backdrop-filter backdrop-blur-sm p-8 md:p-12">
<div class="bg-white rounded-lg shadow-md p-6">
<h4 class="text-lg font-bold text-gray-900 mb-4">Required Documents</h4>
<ul class="space-y-3">
<li class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-check-circle text-yellow-500"></i>
</div>
<div class="ml-3">
<p class="text-gray-700">Certified copy of live birth certificate</p>
</div>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-check-circle text-yellow-500"></i>
</div>
<div class="ml-3">
<p class="text-gray-700">Notarized affidavit of identity</p>
</div>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-check-circle text-yellow-500"></i>
</div>
<div class="ml-3">
<p class="text-gray-700">Statement of claim with CUSIP numbers</p>
</div>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-check-circle text-yellow-500"></i>
</div>
<div class="ml-3">
<p class="text-gray-700">Proof of delivery to proper authorities</p>
</div>
</li>
</ul>
<div class="mt-6 bg-yellow-50 border-l-4 border-yellow-500 p-4">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-exclamation-triangle text-yellow-500"></i>
</div>
<div class="ml-3">
<p class="text-sm text-yellow-700">The process must be followed precisely to be effective. Our guides walk you through each step.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Resources Section -->
<section id="resources" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Educational Resources</h2>
<div class="w-24 h-1 bg-yellow-500 mx-auto mb-6"></div>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Expand your knowledge with our comprehensive library of resources and tools.</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in delay-1">
<div class="h-48 bg-blue-900 flex items-center justify-center">
<i class="fas fa-book-open text-white text-5xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 mb-3">Foundational Law Guide</h3>
<p class="text-gray-600 mb-4">Comprehensive explanation of natural law principles versus statutory law systems.</p>
<a href="#" class="text-yellow-500 font-medium animated-underline">Download PDF <i class="fas fa-download ml-1"></i></a>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in delay-2">
<div class="h-48 bg-blue-800 flex items-center justify-center">
<i class="fas fa-file-alt text-white text-5xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 mb-3">Template Documents</h3>
<p class="text-gray-600 mb-4">Properly formatted legal notices, affidavits, and claim forms with instructions.</p>
<a href="#" class="text-yellow-500 font-medium animated-underline">Access Templates <i class="fas fa-external-link-alt ml-1"></i></a>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in delay-3">
<div class="h-48 bg-blue-700 flex items-center justify-center">
<i class="fas fa-video text-white text-5xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 mb-3">Video Courses</h3>
<p class="text-gray-600 mb-4">Step-by-step video tutorials explaining complex legal concepts in simple terms.</p>
<a href="#" class="text-yellow-500 font-medium animated-underline">Start Learning <i class="fas fa-play-circle ml-1"></i></a>
</div>
</div>
</div>
<div class="mt-16 text-center fade-in">
<h3 class="text-2xl font-bold text-gray-900 mb-6">Frequently Asked Questions</h3>
<div class="max-w-3xl mx-auto space-y-4">
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="w-full flex justify-between items-center p-4 text-left font-medium text-gray-900 bg-gray-50 hover:bg-gray-100 transition duration-200 faq-toggle">
<span>What's the difference between a natural person and a statutory person?</span>
<i class="fas fa-chevron-down transition-transform duration-200"></i>
</button>
<div class="hidden p-4 text-gray-600 faq-content">
<p>A natural person is the living, breathing human being with inherent rights. A statutory person is a legal fiction created by government through documents like birth certificates, which create a separate legal entity that the government can regulate. Most people unknowingly act through their statutory person rather than asserting their natural person status.</p>
</div>
</div>
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="w-full flex justify-between items-center p-4 text-left font-medium text-gray-900 bg-gray-50 hover:bg-gray-100 transition duration-200 faq-toggle">
<span>How do I prove the existence of my birth trust?</span>
<i class="fas fa-chevron-down transition-transform duration-200"></i>
</button>
<div class="hidden p-4 text-gray-600 faq-content">
<p>The birth certificate itself is evidence of the trust. When you request your original birth certificate from vital statistics, you'll notice it's printed on special bond paper - this indicates it's a financial instrument. The CUSIP number associated with your name (which you can find through certain databases) represents the securities held in your trust.</p>
</div>
</div>
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="w-full flex justify-between items-center p-4 text-left font-medium text-gray-900 bg-gray-50 hover:bg-gray-100 transition duration-200 faq-toggle">
<span>Can international law really override Canadian law?</span>
<i class="fas fa-chevron-down transition-transform duration-200"></i>
</button>
<div class="hidden p-4 text-gray-600 faq-content">
<p>International law doesn't exactly "override" domestic law, but through the principle of pacta sunt servanda (agreements must be kept), Canada is obligated to bring its domestic laws into conformity with treaties it has ratified. When Canadian law conflicts with international obligations, courts will attempt to interpret domestic law in a way that complies with international law.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex md:items-center md:space-x-12">
<div class="md:w-1/2 mb-10 md:mb-0 fade-in">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-6">Need Personalized Assistance?</h2>
<p class="text-lg text-gray-600 mb-8">Our team of researchers and consultants can help you navigate the complex systems to assert your rights and access your assets.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-envelope text-yellow-500"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-semibold text-gray-900">Email Us</h4>
<p class="text-gray-600">[email protected]</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-phone-alt text-yellow-500"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-semibold text-gray-900">Call Us</h4>
<p class="text-gray-600">+1 (888) 555-0192</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-map-marker-alt text-yellow-500"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-semibold text-gray-900">Visit Us</h4>
<p class="text-gray-600">123 Liberty Ave, Suite 200<br>Toronto, ON M5V 2H1</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 fade-in delay-1">
<div class="bg-gray-50 rounded-xl shadow-lg p-8">
<h3 class="text-2xl font-bold text-gray-900 mb-6">Send Us a Message</h3>
<form>
<div class="mb-4">
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-yellow-500 focus:border-yellow-500">
</div>
<div class="mb-4">
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-yellow-500 focus:border-yellow-500">
</div>
<div class="mb-4">
<label for="subject" class="block text-sm font-medium text-gray-700 mb-1">Subject</label>
<select id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-yellow-500 focus:border-yellow-500">
<option>General Inquiry</option>
<option>Birth Trust Assistance</option>
<option>Legal Document Review</option>
<option>Workshop Information</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-yellow-500 focus:border-yellow-500"></textarea>
</div>
<button type="submit" class="w-full bg-yellow-500 hover:bg-yellow-600 text-gray-900 px-6 py-3 rounded-md text-lg font-semibold transition duration-300">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex md:justify-between md:space-x-8">
<div class="mb-8 md:mb-0 md:w-1/3">
<div class="flex items-center mb-4">
<i class="fas fa-balance-scale text-2xl text-yellow-500 mr-2"></i>
<span class="text-xl font-bold">LIBERTAS</span>
</div>
<p class="text-gray-400 mb-4">Empowering Canadians with knowledge of their fundamental rights and how to effectively assert them within legal frameworks.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition duration-200">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-200">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-200">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-200">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<div class="grid grid-cols-2 gap-8 md:w-2/3">
<div>
<h3 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white transition duration-200">Home</a></li>
<li><a href="#rights" class="text-gray-400 hover:text-white transition duration-200">Your Rights</a></li>
<li><a href="#international-law" class="text-gray-400 hover:text-white transition duration-200">International Law</a></li>
<li><a href="#trusts" class="text-gray-400 hover:text-white transition duration-200">Birth Trusts</a></li>
<li><a href="#resources" class="text-gray-400 hover:text-white transition duration-200">Resources</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-200">Disclaimer</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-200">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-200">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-200">Cookie Policy</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-200">Document Library</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-200">Video Tutorials</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-200">FAQ</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-200">Blog</a></li>
</ul>
</div>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-800">
<p class="text-gray-400 text-sm text-center">© 2023 Libertas Rights Education. All rights reserved. This website is for educational purposes only and does not constitute legal advice.</p>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="back-to-top" class="fixed bottom-8 right-8 bg-yellow-500 text-gray-900 w-12 h-12 rounded-full shadow-lg flex items-center justify-center transition-opacity duration-300 opacity-0 invisible">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
if (menu.classList.contains('hidden')) {
menu.classList.remove('hidden');
} else {
menu.classList.add('hidden');
}
});
// FAQ toggle functionality
document.querySelectorAll('.faq-toggle').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
if (content.classList.contains('hidden')) {
content.classList.remove('hidden');
icon.classList.add('transform', 'rotate-180');
} else {
content.classList.add('hidden');
icon.classList.remove('transform', 'rotate-180');
}
});
});
// Back to top button
const backToTopButton = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('opacity-0', 'invisible');
backToTopButton.classList.add('opacity-100', 'visible');
} else {
backToTopButton.classList.remove('opacity-100', 'visible');
backToTopButton.classList.add('opacity-0', 'invisible');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Add fade-in class to elements when they come into view
const fadeElements = document.querySelectorAll('.fade-in');
const fadeInObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('opacity-100');
fadeInObserver.unobserve(entry.target);
}
});
}, { threshold: 0.1 });
fadeElements.forEach(element => {
element.classList.add('opacity-0');
fadeInObserver.observe(element);
});
</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=Neomyst/libertas" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |