"use client";
  
import React from "react";
import Image from "next/image";

const PrivacyPolicyContent: React.FC = () => {
  return (
    <div className="container">
      <div className="privacy-policy-content">
        <div className="privacy-policy-content-title">
          <p>Webile Technology is committed to protecting your privacy. This Privacy Policy explains how we collect, use, and disclose information from users of our website and services.</p>
        </div>
        <div className="privacy-policy-content-list">
            <h2>1. Information We Collect</h2>
            <p>We may collect the following types of personal data:</p>
            <ul>
              <li>Name, email address, phone number, and contact details</li>
              <li>Business information you provide</li>
              <li>Technical data such as IP address, browser type, and cookies</li>
              <li>Payment details (when applicable)</li>
            </ul>
        </div>
        <div className="privacy-policy-content-list">
            <h2>2. How We Use Your Information</h2>
            <p>We use the information for:</p>
            <ul>
              <li>Providing and improving our services</li>
              <li>Communication and customer support</li>
              <li>Marketing (with your consent)</li>
              <li>Complying with legal obligations</li>
            </ul>
        </div>
        <div className="privacy-policy-content-list">
            <h2>3. Cookies and Tracking</h2>
            <p>We use cookies to enhance your browsing experience. You can control cookie usage through your browser settings.</p>
        </div>
        <div className="privacy-policy-content-list">
          <h2>4. Information Sharing</h2>
          <p>We do not sell or rent your personal data. We may share data with:</p>
          <ul>
              <li>Our affiliates and service providers under confidentiality agreements</li>
              <li>Legal authorities when required by law</li>
          </ul>
        </div>
        <div className="privacy-policy-content-list">
          <h2>5. Data Security</h2>
          <p>We use reasonable technical and organizational measures to protect your data.</p>
        </div>
        <div className="privacy-policy-content-list">
          <h2>6. Your Rights</h2>
          <p>You may request to:</p>
          <ul>
            <li>Access, update, or delete your personal information</li>
            <li>Withdraw consent for marketing communications</li>
          </ul>
        </div>
        <div className="privacy-policy-content-list">
          <h2>7. International Transfers</h2>
          <p>If data is transferred outside India, we ensure appropriate safeguards are in place.</p>
        </div>
        <div className="privacy-policy-content-list">
          <h2>8. Contact Us</h2>
          <p>For questions or concerns, please contact:</p>
          <p><a href="mailto:sales@webiletechnologies.com">sales@webiletechnologies.com</a></p>
          <p><a href="tel:(+91) - 8000361445">(+91) - 8000361445</a></p>
        </div>

      </div>
    </div>
  );
};

export default PrivacyPolicyContent;
