Files
ukaiautomation/403.php
root e144b20798 Comprehensive SEO and UI improvements across site
SEO Improvements:
- Add Twitter/OG meta tags to gdpr-compliance.php and terms-of-service.php
- Add author bios with E-E-A-T signals to all blog articles
- Add breadcrumb schema markup to key pages
- Create new service pages: price-monitoring.php, competitive-intelligence.php
- Create location pages: london.php, manchester.php, birmingham.php
- Update sitemap.xml with new pages

UI/CSS Improvements:
- Move testimonials section from inline styles to CSS classes
- Standardize hero gradients to #144784 → #179e83 across all pages
- Unify card border styles to border-left: 4px solid #179e83
- Fix CTA gradient direction consistency on location pages
- Standardize breadcrumb colors to #144784
- Replace all purple accent colors (#667eea, #764ba2) with brand colors
- Add CSS variables for brand consistency in main.css

Code Cleanup:
- Delete 6 emergency CSS fix files (button-emergency-fix.css, etc.)
- Remove related-articles-fix.css references from blog articles
- Consolidate styles into main.css

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-07 11:49:39 +00:00

86 lines
2.4 KiB
PHP

<?php
// 403 Forbidden Error Page
http_response_code(403);
// Security headers
header('X-Content-Type-Options: nosniff');
header('X-Frame-Options: DENY');
header('X-XSS-Protection: 1; mode=block');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Access Forbidden - UK Data Services</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #144784 0%, #179e83 100%);
color: white;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
text-align: center;
max-width: 600px;
padding: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 20px;
backdrop-filter: blur(10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
h1 {
font-size: 4rem;
margin: 0 0 20px 0;
font-weight: bold;
}
h2 {
font-size: 1.5rem;
margin: 0 0 30px 0;
opacity: 0.9;
}
p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 30px;
opacity: 0.8;
}
.btn {
display: inline-block;
padding: 15px 30px;
background: rgba(255, 255, 255, 0.2);
color: white;
text-decoration: none;
border-radius: 10px;
border: 2px solid rgba(255, 255, 255, 0.3);
transition: all 0.3s ease;
font-weight: bold;
}
.btn:hover {
background: rgba(255, 255, 255, 0.3);
border-color: rgba(255, 255, 255, 0.5);
transform: translateY(-2px);
}
.logo {
margin-bottom: 30px;
opacity: 0.8;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<h3>UK Data Services</h3>
</div>
<h1>403</h1>
<h2>Access Forbidden</h2>
<p>Sorry, you don't have permission to access this resource. This incident has been logged for security purposes.</p>
<a href="/" class="btn">Return to Homepage</a>
</div>
</body>
</html>