digital-sandbox / services.html
sullivancs's picture
Create a United States Debt Settlement website for lead generation. Phone number to call is changed globally by editing one line.
e54cd37 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Debt Settlement Services - US Debt Relief</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="min-h-screen bg-gradient-to-br from-blue-900 via-blue-800 to-indigo-900">
<custom-navbar></custom-navbar>
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<h1 class="text-4xl font-bold text-center text-gray-800 mb-12">Our Debt Relief Services</h1>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-6xl mx-auto">
<div class="bg-white p-8 rounded-lg shadow-lg border-t-4 border-blue-500">
<i data-feather="dollar-sign" class="text-blue-500 mb-4"></i>
<h2 class="text-2xl font-bold text-gray-800 mb-4">Debt Settlement</h2>
<p class="text-gray-600 mb-4">Our expert negotiators work directly with your creditors to settle your debts for less than you owe.</p>
<ul class="list-disc list-inside text-gray-600 mb-4">
<li>Reduce debt by 40-60%</li>
<li>Stop collection calls</li>
<li>Legal protection</li>
</ul>
<a href="tel:${window.DEBT_PHONE || '1-800-DEBT-HELP'}" class="phone-highlight inline-block">Call Now</a>
</div>
<div class="bg-white p-8 rounded-lg shadow-lg border-t-4 border-green-500">
<i data-feather="shield" class="text-green-500 mb-4"></i>
<h2 class="text-2xl font-bold text-gray-800 mb-4">Credit Counseling</h2>
<p class="text-gray-600 mb-4">Professional guidance to help you manage your finances and improve your credit score.</p>
<ul class="list-disc list-inside text-gray-600 mb-4">
<li>Budget management</li>
<li>Credit education</li>
<li>Long-term financial planning</li>
</ul>
<a href="tel:${window.DEBT_PHONE || '1-800-DEBT-HELP'}" class="phone-highlight inline-block">Call Now</a>
</div>
<div class="bg-white p-8 rounded-lg shadow-lg border-t-4 border-red-500">
<i data-feather="file-text" class="text-red-500 mb-4"></i>
<h2 class="text-2xl font-bold text-gray-800 mb-4">Debt Consolidation</h2>
<p class="text-gray-600 mb-4">Combine multiple debts into one manageable payment with potentially lower interest rates.</p>
<ul class="list-disc list-inside text-gray-600 mb-4">
<li>Single monthly payment</li>
<li>Lower interest rates</li>
<li>Simplified debt management</li>
</ul>
<a href="tel:${window.DEBT_PHONE || '1-800-DEBT-HELP'}" class="phone-highlight inline-block">Call Now</a>
</div>
<div class="bg-white p-8 rounded-lg shadow-lg border-t-4 border-purple-500">
<i data-feather="users" class="text-purple-500 mb-4"></i>
<h2 class="text-2xl font-bold text-gray-800 mb-4">Bankruptcy Alternatives</h2>
<p class="text-gray-600 mb-4">Explore options to avoid bankruptcy while still achieving significant debt relief.</p>
<ul class="list-disc list-inside text-gray-600 mb-4">
<li>Avoid bankruptcy filing</li>
<li>Protect your assets</li>
<li>Maintain credit standing</li>
</ul>
<a href="tel:${window.DEBT_PHONE || '1-800-DEBT-HELP'}" class="phone-highlight inline-block">Call Now</a>
</div>
</div>
</div>
</section>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>