<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="The history of Nildram, one of the UK's most respected ISPs - from a shareware project in Tring to a national broadband provider, told by the people who built it.">
    <title>Nildram - Service Information</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .container {
            max-width: 900px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
        }
        
        .header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .header p {
            font-size: 1.1em;
            opacity: 0.95;
        }
        
        .content {
            padding: 40px;
        }
        
        .intro {
            text-align: center;
            margin-bottom: 40px;
            color: #555;
            font-size: 1.1em;
        }
        
        .services {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .service-card:hover {
            border-color: #667eea;
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
            transform: translateY(-4px);
        }
        
        .service-card h2 {
            color: #667eea;
            margin-bottom: 15px;
            font-size: 1.5em;
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .service-card a {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 30px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .service-card a:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }
        
        .icon {
            font-size: 3em;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .services {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 2em;
            }
            
            .content {
                padding: 30px 20px;
            }
        }
    </style>
<script src="https://analytics.ahrefs.com/analytics.js" data-key="flFSujDCy8vlaTrZYC9ZfA" async></script>
</head>
<body>
    <div class="container">
        <div class="header">
            <h1>Nildram</h1>
            <p>Service Provider Information</p>
        </div>
        
        <div class="content">
            <div class="intro">
                <p>The Nildram brand is no longer in operation. Please use the links below to contact the appropriate provider for your specific needs. If you're interested in reading about the early history of the company, please click <a href="/history.html">here</a>.</p>
            </div>
            
            <div class="services">
                <div class="service-card">
                    <div class="icon">📧</div>
                    <h2>Email Services</h2>
                    <p>If you have a <strong>@nildram.co.uk</strong> or a <strong>@gotadsl.co.uk</strong> email address and need support with email hosting, configuration, or related services, please contact:</p>
                    <a href="https://www.verygoodemail.com" target="_blank">The Very Good Email Company</a>
                </div>
                
                <div class="service-card">
                    <div class="icon">🌐</div>
                    <h2>Connectivity & Other Services</h2>
                    <p>For all connectivity, internet services, and any other technical support matters, please contact:</p>
                    <a href="https://www.talktalk.business/" target="_blank">TalkTalk Business</a>
                </div>
            </div>
        </div>
    </div>
</body>
</html>
