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

const TermsConditonContent: React.FC = () => {
  return (
    <div className="container">
      <div className="terms-conditions">
        <div className="terms-title-content">
          <p>
            Welcome to Webile Technologies. By accessing our website or engaging our services, you agree to be bound by the following terms.
          </p>
        </div>
        <div className="terms-content-list">
          <h2>1. Services Offered</h2>
          <p>We provide IT consulting, software development, and digital transformation services.</p>
        </div>
        <div className="terms-content-list">
          <h2>2. User Responsibilities</h2>
          <p>You agree not to use our website or services for any unlawful purposes.</p>
        </div>
        <div className="terms-content-list">
          <h2>3. Intellectual Property</h2>
          <p>All content, logos, and software developed are the intellectual property of Webile Technology unless otherwise specified.</p>
        </div>
        <div className="terms-content-list">
          <h2>4. Confidentiality</h2>
          <p>Both parties agree to maintain confidentiality of any sensitive business information shared during engagements.</p>
        </div>
        <div className="terms-content-list">
          <h2>5. Payment Terms</h2>
          <p>Payments must be made as per the agreed proposal or contract. Late payments may attract penalties or suspension of services.</p>
        </div>
        <div className="terms-content-list">
          <h2>6. Termination</h2>
          <p>Either party may terminate the agreement with written notice. Termination does not waive payment for completed work.</p>
        </div>
        <div className="terms-content-list">
          <h2>7. Limitation of Liability</h2>
          <p>We are not liable for indirect or consequential damages. Our liability is limited to the fees paid by you in the last 3 months.</p>
        </div>
        <div className="terms-content-list">
          <h2>8. Governing Law</h2>
          <p>These terms are governed by the laws of India. Any disputes shall be resolved in courts located in Ahmedabad Gujarat.</p>
        </div>
      </div>
    </div>
  );
};

export default TermsConditonContent;
