top of page
Upload

<!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="Need secure storage during your house move? Home Movers UK offers flexible, affordable storage units. From furniture storage to long-term solutions, we keep your belongings safe.">
    <title>Secure Storage Solutions UK | Short & Long Term | Home Movers UK</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
        }

        .logo span {
            color: #e74c3c;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #e74c3c;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1551524164-6ca5e3aa1c04?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 4rem 0;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        /* Main Content */
        .content-section {
            padding: 4rem 0;
            background: white;
            margin: 2rem auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: #2c3e50;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .feature-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 4px solid #3498db;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        /* Options Grid */
        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .option-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
        }

        .option-card h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            text-align: center;
            padding: 4rem 0;
            border-radius: 10px;
            margin: 2rem auto;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: #e74c3c;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 4rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul {
                gap: 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .features-grid,
            .options-grid {
                grid-template-columns: 1fr;
            }
        }
    </style>
</head>
<body>
    <!-- Header -->
    <header>
        <div class="container">
            <div class="header-content">
                <div class="logo">Home <span>Movers</span> UK</div>
                <nav>
                    <ul>
                        <li><a href="/">Home</a></li>
                        <li><a href="/removals">Removals</a></li>
                        <li><a href="/storage" style="color: #e74c3c;">Storage</a></li>
                        <li><a href="/packing">Packing</a></li>
                        <li><a href="/contact">Contact</a></li>
                    </ul>
                </nav>
            </div>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="hero">
        <div class="container">
            <h1>Safe, Secure, and Flexible Storage Solutions</h1>
            <p>Moving house often comes with a timing puzzle. Whether you're downsizing, renovating, or in between properties, you need a safe place for your belongings.</p>
        </div>
    </section>

    <!-- Main Content -->
    <main class="container">
        <!-- Introductory Section -->
        <section class="content-section">
            <div class="section-title">
                <h2>Your Trusted Storage Solution</h2>
                <p>At Home Movers UK, our modern, secure storage facilities across the UK provide the perfect solution, giving you complete peace of mind during your move and beyond.</p>
            </div>

            <!-- Secure Facilities -->
            <div class="section-title">
                <h2>Our Secure Storage Facilities</h2>
            </div>
            <div class="features-grid">
                <div class="feature-card">
                    <div class="feature-icon">🔒</div>
                    <h3>24/7 Security & CCTV</h3>
                    <p>Our facilities are monitored around the clock, so your possessions are always protected with state-of-the-art security systems.</p>
                </div>
                <div class="feature-card">
                    <div class="feature-icon">🧹</div>
                    <h3>Clean, Dry & Pest-Free</h3>
                    <p>We maintain a pristine environment to ensure your furniture, electronics, and personal items stay in perfect condition.</p>
                </div>
                <div class="feature-card">
                    <div class="feature-icon">🕒</div>
                    <h3>Easy Access</h3>
                    <p>With convenient access hours, you can retrieve your items whenever you need them. Flexible visiting times to suit your schedule.</p>
                </div>
            </div>

            <!-- Storage Options -->
            <div class="section-title">
                <h2>Flexible Storage Options for Your Needs</h2>
            </div>
            <div class="options-grid">
                <div class="option-card">
                    <h3>Short-Term Storage</h3>
                    <p>Ideal for bridging a gap between moving dates or during a home renovation. Stay flexible with our monthly rolling contracts.</p>
                </div>
                <div class="option-card">
                    <h3>Long-Term Storage</h3>
                    <p>A cost-effective solution for storing seasonal items, furniture, or archives. We offer discounted rates for commitments over three months.</p>
                </div>
                <div class="option-card">
                    <h3>Furniture Storage</h3>
                    <p>Specialised care for your sofas, beds, and wardrobes. We can collect, store, and deliver as part of your removals package.</p>
                </div>
            </div>
        </section>

        <!-- CTA Section -->
        <section class="cta-section">
            <h2>Ready to Find Your Perfect Storage Solution?</h2>
            <p>Get in touch for a free, no-obligation quote. Let us help you make your move smoother with our trusted storage services in the UK.</p>
            <a href="/contact" class="cta-button">Get Your Free Storage Quote Today</a>
        </section>
    </main>

    <!-- Footer -->
    <footer>
        <div class="container">
            <p>&copy; 2024 Home Movers UK. All rights reserved. | Professional Removals & Storage Services</p>
            <p>Email: info@homemoversuk.com | Phone: 0800 123 4567</p>
        </div>
    </footer>
</body>
</html>

home movers uk
house removals

£ 22,445.05 

£ 227.53

£ 22,672.58

bottom of page