
        .back-to-home {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #d4af37;
            color: #0a1a35;
            padding: 12px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .back-to-home:hover {
            background-color: #c19a3c;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }
