
        :root {
            --primary-blue: #1a2a6c; 
            --accent-gold: #d4af37;  
            --glass-white: rgba(255, 255, 255, 0.85);
        }
		
		.forsale	{
		color: white;
		font-weight:bold;
		border: 2px solid white; 
		padding: 5px 15px; 
		border-radius: 20px; 
		font-size: 0.8rem;
		}

        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            color: #333;
        }

        
        .hero-bg {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('house4.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        
        .header {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 50px;
            align-items: center;
        }

        .logo {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--accent-gold);
            font-weight: 300;
        }
		.excell{
		border-bottom:1px solid grey;
		}		
		
		
		.safetransf  {
		margin-top: 20px;
		font-size: 0.9rem;
		color: #888;
		
		}
        
        .glass-card {   /*I love coffee*/
            background: var(--glass-white);
            backdrop-filter: blur(10px); 
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            text-align: center;
            max-width: 500px;
            border: 1px solid rgba(255,255,255,0.3);
        }

        h1 {
            color: var(--primary-blue);
            font-size: 2.2rem;
            margin-top: 0;
        }

        p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
        }

        
        .btn-gold {
            display: inline-block;
            background-color: var(--primary-blue);
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
			
        .btn-gold:hover {
            background-color: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            transform: scale(1.05);
        }

        
        footer {
            position: absolute;
            bottom: 20px;
            color: rgba(255,255,255,0.7);
            font-size: 0.8rem;
            text-align: center;
            width: 100%;
        }
    