import Navbar from '../components/Navbar';
import Footer from '../components/Footer';
import type { Metadata } from 'next';

export const metadata: Metadata = {
  title: 'Refund Policy - Uniwor',
  description: 'Dealing with money is not a game. Here how we do it.',
};

export default function RefundPolicy() {
  return (
    <main className="min-h-screen bg-white flex flex-col">
      <Navbar hideNavLinks />
      
      <div className="max-w-4xl mx-auto px-6 py-16 pt-24 flex-grow">
        <h1 className="text-4xl font-bold text-[#0A1931] mb-9 text-center">Refund Policy</h1>
        <p className="text-lg text-gray-600 mb-8 text-center">Dealing with money is not a game. Here how we do it.</p>
        
        <p className="text-gray-700 mb-6 leading-relaxed text-justify">
          Once you switched to our &quot;Smart Subscription&quot; premium plan, each time you order our services you will be charged according to the usage cost calculation for that billing cycle. Once we charge that amount and enable the services, due to any reason no refund will be granted.
        </p>

        <p className="text-gray-700 mb-25 leading-relaxed text-justify">
          If somehow you decide to downgrade your account to our FREE forever plan, and if there are any unused premium services in your account, you can still use those services until you run out. Other than using any left over premium services, you can&apos;t request refunds for those services.
        </p>
      </div>

      <Footer />
    </main>
  );
}
