.last-updated { display: inline-flex; align-items: center; gap: 0.5rem; background-color: var(--white); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.9rem; color: var(--gray-600); margin-top: 1.5rem; box-shadow: var(--shadow-sm); } .last-updated i { color: var(--primary-blue); } /* Privacy Content Section */ .privacy-content { padding: 5rem 0; background-color: var(--white); } .privacy-wrapper { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; } /* Table of Contents Sidebar */ .toc-sidebar { position: sticky; top: 120px; background-color: var(--gray-50); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--gray-200); } .toc-sidebar h3 { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--gray-900); display: flex; align-items: center; gap: 0.5rem; } .toc-sidebar h3 i { color: var(--primary-blue); } .toc-list { list-style: none; } .toc-list li { margin-bottom: 0.5rem; } .toc-list a { display: block; padding: 0.6rem 1rem; color: var(--gray-600); text-decoration: none; border-radius: 8px; font-size: 0.95rem; transition: all 0.3s; border-left: 3px solid transparent; } .toc-list a:hover, .toc-list a.active { background-color: var(--white); color: var(--primary-blue); border-left-color: var(--primary-blue); } .toc-list a i { margin-right: 0.5rem; font-size: 0.8rem; } /* Main Content */ .privacy-main { max-width: 800px; } .privacy-section { margin-bottom: 3rem; scroll-margin-top: 120px; } .privacy-section h2 { font-size: 1.75rem; margin-bottom: 1.5rem; color: var(--gray-900); display: flex; align-items: center; gap: 0.75rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--light-blue); } .privacy-section h2 i { color: var(--primary-blue); font-size: 1.5rem; } .privacy-section h3 { font-size: 1.25rem; margin: 2rem 0 1rem; color: var(--gray-800); } .privacy-section p { color: var(--gray-700); margin-bottom: 1rem; line-height: 1.8; } .privacy-section ul, .privacy-section ol { margin: 1rem 0 1.5rem 1.5rem; color: var(--gray-700); } .privacy-section li { margin-bottom: 0.75rem; line-height: 1.7; } .privacy-section li::marker { color: var(--primary-blue); } .privacy-section a { color: var(--primary-blue); text-decoration: none; font-weight: 500; transition: color 0.3s; } .privacy-section a:hover { color: var(--accent-blue); text-decoration: underline; } /* Info Boxes */ .info-box { background-color: var(--light-blue); border-left: 4px solid var(--primary-blue); padding: 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0; } .info-box.warning { background-color: #fef3c7; border-left-color: #f59e0b; } .info-box.success { background-color: #d1fae5; border-left-color: #10b981; } .info-box p { margin-bottom: 0; color: var(--gray-800); } .info-box-title { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--gray-900); } .info-box-title i { color: var(--primary-blue); } .info-box.warning .info-box-title i { color: #f59e0b; } .info-box.success .info-box-title i { color: #10b981; } /* Data Table */ .data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background-color: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); } .data-table thead { background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); color: white; } .data-table th, .data-table td { padding: 1rem 1.25rem; text-align: left; } .data-table th { font-weight: 600; font-size: 0.95rem; } .data-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: background-color 0.3s; } .data-table tbody tr:last-child { border-bottom: none; } .data-table tbody tr:hover { background-color: var(--gray-50); } .data-table td { color: var(--gray-700); } /* Contact Card */ .contact-card { background: linear-gradient(135deg, var(--gray-50), var(--light-blue)); border-radius: var(--radius-lg); padding: 2rem; margin-top: 2rem; border: 1px solid var(--gray-200); } .contact-card h3 { margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; } .contact-card h3 i { color: var(--primary-blue); } .contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 1rem; } .contact-item { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background-color: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all 0.3s; } .contact-item:hover { border-color: var(--primary-blue); box-shadow: var(--shadow-md); } .contact-item i { color: var(--primary-blue); font-size: 1.25rem; } .contact-item a { color: var(--gray-700); text-decoration: none; } .contact-item a:hover { color: var(--primary-blue); } /* Rights Cards */ .rights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0; } .right-card { background-color: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; transition: all 0.3s; } .right-card:hover { border-color: var(--primary-blue); box-shadow: var(--shadow-lg); transform: translateY(-5px); } .right-card-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; } .right-card-icon i { color: white; font-size: 1.25rem; } .right-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; } .right-card p { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 0; } /* CTA Section */ .cta-section { padding: 5rem 0; text-align: center; background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.05)); } .cta-card { background: var(--white); border-radius: var(--radius-lg); padding: 4rem; border: 1px solid var(--gray-200); position: relative; overflow: hidden; box-shadow: var(--shadow-xl); max-width: 800px; margin: 0 auto; } .cta-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%); } .cta-card h2 { font-size: 2.25rem; margin-bottom: 1rem; color: var(--gray-900); } .cta-card p { font-size: 1.125rem; color: var(--gray-600); margin-bottom: 2rem; } .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } .secondary-button { background: transparent; color: var(--primary-blue); border: 2px solid var(--primary-blue); padding: 0.85rem 1.8rem; border-radius: 10px; font-weight: 600; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; } .secondary-button:hover { background-color: rgba(37, 99, 235, 0.05); transform: translateY(-2px); }

Disclaimer

Please read this disclaimer carefully before using our website

Last Updated:

Privacy Policy Details

General Disclaimer

The information provided by CompanyName ("we," "us," or "our") on our website (the "Site") and our mobile application is for general informational purposes only. All information on the Site and our mobile application is provided in good faith, however, we make no representation or warranty of any kind, express or implied, regarding the accuracy, adequacy, validity, reliability, availability, or completeness of any information on the Site or our mobile application.

⚠️ Important Notice

Under no circumstance shall we have any liability to you for any loss or damage of any kind incurred as a result of the use of the site or reliance on any information provided on the site. Your use of the site and your reliance on any information on the site is solely at your own risk.

Website Disclaimer

The information contained on this website is for general information purposes only. CompanyName assumes no responsibility for errors or omissions in the contents of the website.

In no event shall CompanyName be liable for any special, direct, indirect, consequential, or incidental damages or any damages whatsoever, whether in an action of contract, negligence, or other tort, arising out of or in connection with the use of the website or the contents of the website.

CompanyName reserves the right to make additions, deletions, or modifications to the contents on the website at any time without prior notice. This disclaimer was created for informational purposes only.

No Guarantees

This website makes no representations or warranties about:

  • The completeness, reliability, or accuracy of this information
  • Any action you take upon the information you find on this website
  • Any damages or losses you may incur through the use of our website
  • The availability of the website or its contents

External Links Disclaimer

The Site may contain (or you may be sent through the Site) links to other websites or content belonging to or originating from third parties or links to websites and features in banners or other advertising. Such external links are not investigated, monitored, or checked for accuracy, adequacy, validity, reliability, availability, or completeness by us.

ℹ️ Third-Party Content

We do not warrant, endorse, guarantee, or assume responsibility for the accuracy or reliability of any information offered by third-party websites linked through the site or any website or feature linked in any banner or other advertising.

We will not be a party to or in any way be responsible for monitoring any transaction between you and third-party providers of products or services. As with the purchase of a product or service through any medium or in any environment, you should use your best judgment and exercise caution where appropriate.

Professional Disclaimer

The Site cannot and does not contain professional advice. The information is provided for general informational and educational purposes only and is not a substitute for professional advice. Accordingly, before taking any actions based upon such information, we encourage you to consult with the appropriate professionals.

"We do not provide any kind of professional advice. The use or reliance of any information contained on this site is solely at your own risk."

Not Professional Advice

The content on this website is not intended to be a substitute for:

  • Legal advice from a qualified attorney
  • Financial advice from a certified financial planner
  • Medical advice from a licensed healthcare provider
  • Technical advice from certified professionals in their respective fields

Testimonials Disclaimer

The Site may contain testimonials by users of our products and/or services. These testimonials reflect the real-life experiences and opinions of such users. However, the experiences are personal to those particular users, and may not necessarily be representative of all users of our products and/or services.

We do not claim, and you should not assume, that all users will have the same experiences. Your individual results may vary.

Testimonial Representations

The testimonials on the Site are submitted in various forms such as text, audio, and/or video, and are reviewed by us before being posted. They appear on the Site verbatim as given by the users, except for the correction of grammar or typing errors. Some testimonials may have been shortened for brevity, where the full testimonial contained extraneous information not relevant to the general public.

⚠️ Results May Vary

The views and opinions expressed in the testimonials belong solely to the individual user and do not reflect our views and opinions. We are not affiliated with users who provide testimonials, and users are not paid or otherwise compensated for their testimonials.

Errors and Omissions

While we have made every attempt to ensure that the information contained in this site has been obtained from reliable sources, CompanyName is not responsible for any errors or omissions or for the results obtained from the use of this information.

All information in this site is provided "as is," with no guarantee of completeness, accuracy, timeliness, or of the results obtained from the use of this information, and without warranty of any kind, express or implied, including, but not limited to warranties of performance, merchantability, and fitness for a particular purpose.

In no event will CompanyName, its related partnerships or corporations, or the partners, agents, or employees thereof be liable to you or anyone else for any decision made or action taken in reliance on the information in this Site or for any consequential, special, or similar damages, even if advised of the possibility of such damages.

Limitation of Liability

To the fullest extent permitted by applicable law, in no event shall CompanyName, its affiliates, directors, employees, agents, suppliers, or licensors be liable for:

  • Any indirect, incidental, special, consequential, or punitive damages
  • Any loss of profits, revenue, data, or use
  • Any loss of goodwill or reputation
  • Any other intangible losses

This limitation applies whether the alleged liability is based on contract, tort, negligence, strict liability, or any other basis, even if we have been advised of the possibility of such damage.

ℹ️ Jurisdictional Limitations

Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you. In such cases, our liability will be limited to the fullest extent permitted by applicable law.

Changes to This Disclaimer

We reserve the right to modify this disclaimer at any time. Changes and clarifications will take effect immediately upon their posting on the website. If we make material changes to this policy, we will notify you here that it has been updated, so that you are aware of what information we collect, how we use it, and under what circumstances, if any, we use and/or disclose it.

We encourage you to periodically review this disclaimer to stay informed about how we are protecting the information we collect. Your continued use of this website after any changes or revisions to this disclaimer shall indicate your agreement with the terms of such revised disclaimer.

Questions About This Disclaimer?

If you have any questions about this Disclaimer, please contact us.